body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Roboto Slab', serif;
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.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.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((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: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #99f7ec !important;
}
.bg-success {
  background-color: #33f73f !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #99f7ec !important;
  border-color: #99f7ec !important;
  color: #0b8678 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #0b8678 !important;
  background-color: #52f1df !important;
  border-color: #52f1df !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #0b8678 !important;
  background-color: #52f1df !important;
  border-color: #52f1df !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !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: #33f73f !important;
  border-color: #33f73f !important;
  color: #022904 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #022904 !important;
  background-color: #08d515 !important;
  border-color: #08d515 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #022904 !important;
  background-color: #08d515 !important;
  border-color: #08d515 !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: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !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: #3af0da;
  color: #3af0da;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0b8678;
  background-color: #99f7ec;
  border-color: #99f7ec;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #0b8678 !important;
  background-color: #99f7ec !important;
  border-color: #99f7ec !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !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: #07bd12;
  color: #07bd12;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #022904;
  background-color: #33f73f;
  border-color: #33f73f;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #022904 !important;
  background-color: #33f73f !important;
  border-color: #33f73f !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: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !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: #99f7ec !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #33f73f !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #3af0da !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #07bd12 !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: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.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: #99f7ec;
  border-color: #99f7ec;
  color: #0c9e8d;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #99f7ec;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f7fff8;
}
.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: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #99f7ec;
}
/* 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);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #99f7ec;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #99f7ec;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #99f7ec;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #99f7ec;
  border-bottom-color: #99f7ec;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #99f7ec !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3366 !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%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%2399f7ec' %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.3;
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYTCvNG5x {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYTCvNG5x .mbr-section-subtitle {
  color: #767676;
}
.cid-rgYNSUK4x1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rgYNSUK4x1 h2 {
  text-align: left;
}
.cid-rgYNSUK4x1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rgYNSUK4x1 p {
  color: #767676;
  text-align: left;
}
.cid-rgYNSUK4x1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rgYNSUK4x1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rgYNSUK4x1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rgYNSUK4x1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgYNSUK4x1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rgYNSUK4x1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rgYNSUK4x1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rgYNSUK4x1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rgYNSUK4x1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-rgYNSVi1VU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rgYNSVi1VU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rgYNSVi1VU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rgYNSVi1VU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rgYNSVi1VU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rgYNSVi1VU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgYNSVi1VU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rgYNSVi1VU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rgYNSVi1VU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rgYNSVi1VU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgYNSVSM6n {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rgYNSVSM6n .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rgYNSVSM6n .pricing {
    padding: 1.5rem;
  }
}
.cid-rgYNSVSM6n .plan-header,
.cid-rgYNSVSM6n .plan-body {
  background-color: #fff;
}
.cid-rgYNSVSM6n .plan-title {
  margin-top: 1.4rem;
}
.cid-rgYNSVSM6n .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rgYNSVSM6n .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rgYNSVSM6n .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rgYNSVSM6n hr {
  margin: 2rem 0;
}
.cid-rgYNSWqrIi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rgYNSWqrIi .title {
  margin-bottom: 2rem;
}
.cid-rgYNSWqrIi .mbr-section-subtitle {
  color: #767676;
}
.cid-rgYNSWqrIi a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rgYNSWqrIi a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rgYNSWqrIi .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rgYNSWqrIi .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rgYNSWYsHO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rgYNSWYsHO .content {
    text-align: center;
  }
  .cid-rgYNSWYsHO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rgYNSWYsHO .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rgYNSWYsHO .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rgYNSWYsHO .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rgYNSWYsHO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rgYNSWYsHO .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rgYNSWYsHO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rgYNSWYsHO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rgYNSWYsHO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rgYNSWYsHO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rgYNSWYsHO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rgYNSWYsHO .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYNuTDsHD {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYNuTDsHD .mbr-section-subtitle {
  color: #767676;
}
.cid-rerKlFGcrG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rerKlFGcrG h2 {
  text-align: left;
}
.cid-rerKlFGcrG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rerKlFGcrG p {
  color: #767676;
  text-align: left;
}
.cid-rerKlFGcrG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rerKlFGcrG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rerKlFGcrG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rerKlFGcrG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rerKlFGcrG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rerKlFGcrG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rerKlFGcrG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rerKlFGcrG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rerKlFGcrG .card-img span {
    font-size: 40px !important;
  }
}
.cid-rerM87EStv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rerM87EStv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rerM87EStv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rerM87EStv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rerM87EStv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rerM87EStv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rerM87EStv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rerM87EStv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rerM87EStv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rerM87EStv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rerKlGxrbr {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
}
.cid-rerKlGxrbr .image-block {
  margin: auto;
}
.cid-rerKlGxrbr figcaption {
  position: relative;
}
.cid-rerKlGxrbr figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rerKlGxrbr .image-block {
    width: 100% !important;
  }
}
.cid-rerKlGT494 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rerKlGT494 .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rerKlGT494 .pricing {
    padding: 1.5rem;
  }
}
.cid-rerKlGT494 .plan-header,
.cid-rerKlGT494 .plan-body {
  background-color: #fff;
}
.cid-rerKlGT494 .plan-title {
  margin-top: 1.4rem;
}
.cid-rerKlGT494 .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rerKlGT494 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rerKlGT494 .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rerKlGT494 hr {
  margin: 2rem 0;
}
.cid-rerKlHoxRz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rerKlHoxRz .title {
  margin-bottom: 2rem;
}
.cid-rerKlHoxRz .mbr-section-subtitle {
  color: #767676;
}
.cid-rerKlHoxRz a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rerKlHoxRz a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rerKlHoxRz .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rerKlHoxRz .input-group-btn {
  display: block;
  text-align: center;
}
.cid-res0UIuyvd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-res0UIuyvd .content {
    text-align: center;
  }
  .cid-res0UIuyvd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-res0UIuyvd .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-res0UIuyvd .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-res0UIuyvd .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-res0UIuyvd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-res0UIuyvd .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-res0UIuyvd .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-res0UIuyvd .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-res0UIuyvd .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-res0UIuyvd .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-res0UIuyvd .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-res0UIuyvd .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjHbtIzGgP {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sjHbtIzGgP .mbr-section-subtitle {
  color: #767676;
}
.cid-riHPQrTlik {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-riHPQrTlik h2 {
  text-align: left;
}
.cid-riHPQrTlik h4 {
  text-align: left;
  font-weight: 500;
}
.cid-riHPQrTlik p {
  color: #767676;
  text-align: left;
}
.cid-riHPQrTlik .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-riHPQrTlik .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-riHPQrTlik .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-riHPQrTlik .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-riHPQrTlik .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-riHPQrTlik .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-riHPQrTlik .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-riHPQrTlik .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-riHPQrTlik .card-img span {
    font-size: 40px !important;
  }
}
.cid-riHPgKXGbb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-riHPgKXGbb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-riHPgKXGbb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-riHPgKXGbb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-riHPgKXGbb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-riHPgKXGbb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-riHPgKXGbb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-riHPgKXGbb .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-riHPgKXGbb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-riHPgKXGbb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-riHPgLSufz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-riHPgLSufz .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-riHPgLSufz .pricing {
    padding: 1.5rem;
  }
}
.cid-riHPgLSufz .plan-header,
.cid-riHPgLSufz .plan-body {
  background-color: #fff;
}
.cid-riHPgLSufz .plan-title {
  margin-top: 1.4rem;
}
.cid-riHPgLSufz .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-riHPgLSufz .price-figure {
    font-size: 4.25rem;
  }
}
.cid-riHPgLSufz .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-riHPgLSufz hr {
  margin: 2rem 0;
}
.cid-riHPgMvpNN {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-riHPgMvpNN .title {
  margin-bottom: 2rem;
}
.cid-riHPgMvpNN .mbr-section-subtitle {
  color: #767676;
}
.cid-riHPgMvpNN a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-riHPgMvpNN a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-riHPgMvpNN .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-riHPgMvpNN .input-group-btn {
  display: block;
  text-align: center;
}
.cid-riHPgN7ymo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-riHPgN7ymo .content {
    text-align: center;
  }
  .cid-riHPgN7ymo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-riHPgN7ymo .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-riHPgN7ymo .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-riHPgN7ymo .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-riHPgN7ymo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-riHPgN7ymo .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-riHPgN7ymo .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-riHPgN7ymo .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-riHPgN7ymo .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-riHPgN7ymo .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-riHPgN7ymo .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-riHPgN7ymo .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-reCd9mYZ52 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #0f7699;
}
.cid-reCd9ntgXc {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-reCd9ntgXc h2 {
  text-align: left;
}
.cid-reCd9ntgXc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-reCd9ntgXc p {
  color: #767676;
  text-align: left;
}
.cid-reCd9ntgXc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-reCd9ntgXc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-reCd9ntgXc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-reCd9ntgXc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-reCd9ntgXc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-reCd9ntgXc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-reCd9ntgXc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-reCd9ntgXc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-reCd9ntgXc .card-img span {
    font-size: 40px !important;
  }
}
.cid-reCd9o7K09 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-reCd9o7K09 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-reCd9o7K09 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-reCd9o7K09 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-reCd9o7K09 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-reCd9o7K09 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reCd9o7K09 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-reCd9o7K09 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-reCd9o7K09 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-reCd9o7K09 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reCd9oER6c {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-reCd9oER6c .image-block {
  margin: auto;
}
.cid-reCd9oER6c figcaption {
  position: relative;
}
.cid-reCd9oER6c figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-reCd9oER6c .image-block {
    width: 100% !important;
  }
}
.cid-reCd9p0LGw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-reCd9p0LGw .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-reCd9p0LGw .pricing {
    padding: 1.5rem;
  }
}
.cid-reCd9p0LGw .plan-header,
.cid-reCd9p0LGw .plan-body {
  background-color: #fff;
}
.cid-reCd9p0LGw .plan-title {
  margin-top: 1.4rem;
}
.cid-reCd9p0LGw .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-reCd9p0LGw .price-figure {
    font-size: 4.25rem;
  }
}
.cid-reCd9p0LGw .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-reCd9p0LGw hr {
  margin: 2rem 0;
}
.cid-reCd9pWf1j {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-reCd9pWf1j .title {
  margin-bottom: 2rem;
}
.cid-reCd9pWf1j .mbr-section-subtitle {
  color: #767676;
}
.cid-reCd9pWf1j a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-reCd9pWf1j a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-reCd9pWf1j .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-reCd9pWf1j .input-group-btn {
  display: block;
  text-align: center;
}
.cid-reCd9qQSYm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-reCd9qQSYm .content {
    text-align: center;
  }
  .cid-reCd9qQSYm .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-reCd9qQSYm .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-reCd9qQSYm .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-reCd9qQSYm .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-reCd9qQSYm .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-reCd9qQSYm .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-reCd9qQSYm .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-reCd9qQSYm .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-reCd9qQSYm .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-reCd9qQSYm .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-reCd9qQSYm .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-reCd9qQSYm .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYV3xNQYJ {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYV3xNQYJ .mbr-section-subtitle {
  color: #767676;
}
.cid-rjEru4tF1X {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rjEru4tF1X h2 {
  text-align: left;
}
.cid-rjEru4tF1X h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rjEru4tF1X p {
  color: #767676;
  text-align: left;
}
.cid-rjEru4tF1X .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rjEru4tF1X .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rjEru4tF1X .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rjEru4tF1X .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rjEru4tF1X .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rjEru4tF1X .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rjEru4tF1X .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rjEru4tF1X .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rjEru4tF1X .card-img span {
    font-size: 40px !important;
  }
}
.cid-rjEru4ZH1V {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rjEru4ZH1V .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rjEru4ZH1V .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rjEru4ZH1V .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rjEru4ZH1V .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rjEru4ZH1V .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rjEru4ZH1V .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rjEru4ZH1V .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rjEru4ZH1V .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rjEru4ZH1V .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rjEru5AwgU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rjEru5AwgU .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rjEru5AwgU .pricing {
    padding: 1.5rem;
  }
}
.cid-rjEru5AwgU .plan-header,
.cid-rjEru5AwgU .plan-body {
  background-color: #fff;
}
.cid-rjEru5AwgU .plan-title {
  margin-top: 1.4rem;
}
.cid-rjEru5AwgU .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rjEru5AwgU .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rjEru5AwgU .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rjEru5AwgU hr {
  margin: 2rem 0;
}
.cid-rjEru68ua7 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rjEru68ua7 .title {
  margin-bottom: 2rem;
}
.cid-rjEru68ua7 .mbr-section-subtitle {
  color: #767676;
}
.cid-rjEru68ua7 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rjEru68ua7 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rjEru68ua7 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rjEru68ua7 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rjEru6GNvB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rjEru6GNvB .content {
    text-align: center;
  }
  .cid-rjEru6GNvB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rjEru6GNvB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rjEru6GNvB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rjEru6GNvB .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rjEru6GNvB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rjEru6GNvB .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rjEru6GNvB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rjEru6GNvB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rjEru6GNvB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rjEru6GNvB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rjEru6GNvB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rjEru6GNvB .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sk211VDrnK {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sk211VDrnK .mbr-section-subtitle {
  color: #767676;
}
.cid-rgqdLxNmXr {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rgqdLxNmXr h2 {
  text-align: left;
}
.cid-rgqdLxNmXr h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rgqdLxNmXr p {
  color: #767676;
  text-align: left;
}
.cid-rgqdLxNmXr .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rgqdLxNmXr .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rgqdLxNmXr .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rgqdLxNmXr .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgqdLxNmXr .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rgqdLxNmXr .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rgqdLxNmXr .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rgqdLxNmXr .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rgqdLxNmXr .card-img span {
    font-size: 40px !important;
  }
}
.cid-rgqdLyWvrT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rgqdLyWvrT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rgqdLyWvrT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rgqdLyWvrT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rgqdLyWvrT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rgqdLyWvrT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgqdLyWvrT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rgqdLyWvrT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rgqdLyWvrT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rgqdLyWvrT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgqdLztu2s {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rgqdLztu2s .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rgqdLztu2s .pricing {
    padding: 1.5rem;
  }
}
.cid-rgqdLztu2s .plan-header,
.cid-rgqdLztu2s .plan-body {
  background-color: #fff;
}
.cid-rgqdLztu2s .plan-title {
  margin-top: 1.4rem;
}
.cid-rgqdLztu2s .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rgqdLztu2s .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rgqdLztu2s .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rgqdLztu2s hr {
  margin: 2rem 0;
}
.cid-rgqdLA4Yew {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rgqdLA4Yew .title {
  margin-bottom: 2rem;
}
.cid-rgqdLA4Yew .mbr-section-subtitle {
  color: #767676;
}
.cid-rgqdLA4Yew a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rgqdLA4Yew a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rgqdLA4Yew .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rgqdLA4Yew .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rgqdLADMC7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rgqdLADMC7 .content {
    text-align: center;
  }
  .cid-rgqdLADMC7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rgqdLADMC7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rgqdLADMC7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rgqdLADMC7 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rgqdLADMC7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rgqdLADMC7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rgqdLADMC7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rgqdLADMC7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rgqdLADMC7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rgqdLADMC7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rgqdLADMC7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rgqdLADMC7 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sj8ws04WGq {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sj8ws04WGq .mbr-section-subtitle {
  color: #767676;
}
.cid-rEFmrIkCLd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rEFmrIkCLd h2 {
  text-align: left;
}
.cid-rEFmrIkCLd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rEFmrIkCLd p {
  color: #767676;
  text-align: left;
}
.cid-rEFmrIkCLd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rEFmrIkCLd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rEFmrIkCLd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rEFmrIkCLd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rEFmrIkCLd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rEFmrIkCLd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rEFmrIkCLd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rEFmrIkCLd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rEFmrIkCLd .card-img span {
    font-size: 40px !important;
  }
}
.cid-rEFmrIkCLd P {
  color: #465052;
}
.cid-rEFmrJejwZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rEFmrJejwZ .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rEFmrJejwZ .pricing {
    padding: 1.5rem;
  }
}
.cid-rEFmrJejwZ .plan-header,
.cid-rEFmrJejwZ .plan-body {
  background-color: #fff;
}
.cid-rEFmrJejwZ .plan-title {
  margin-top: 1.4rem;
}
.cid-rEFmrJejwZ .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rEFmrJejwZ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rEFmrJejwZ .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rEFmrJejwZ hr {
  margin: 2rem 0;
}
.cid-rEFmrKhDpA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rEFmrKhDpA .title {
  margin-bottom: 2rem;
}
.cid-rEFmrKhDpA .mbr-section-subtitle {
  color: #767676;
}
.cid-rEFmrKhDpA a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rEFmrKhDpA a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rEFmrKhDpA .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rEFmrKhDpA .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rEFmrKKiQ0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rEFmrKKiQ0 .content {
    text-align: center;
  }
  .cid-rEFmrKKiQ0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rEFmrKKiQ0 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rEFmrKKiQ0 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rEFmrKKiQ0 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rEFmrKKiQ0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rEFmrKKiQ0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rEFmrKKiQ0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rEFmrKKiQ0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rEFmrKKiQ0 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rEFmrKKiQ0 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rEFmrKKiQ0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rEFmrKKiQ0 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sk23wvuBno {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sk23wvuBno .mbr-section-subtitle {
  color: #767676;
}
.cid-reBcl4Iyiy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-reBcl4Iyiy h2 {
  text-align: left;
}
.cid-reBcl4Iyiy h4 {
  text-align: left;
  font-weight: 500;
}
.cid-reBcl4Iyiy p {
  color: #767676;
  text-align: left;
}
.cid-reBcl4Iyiy .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-reBcl4Iyiy .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-reBcl4Iyiy .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-reBcl4Iyiy .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-reBcl4Iyiy .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-reBcl4Iyiy .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-reBcl4Iyiy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-reBcl4Iyiy .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-reBcl4Iyiy .card-img span {
    font-size: 40px !important;
  }
}
.cid-reBcl5gJBp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-reBcl5gJBp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-reBcl5gJBp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-reBcl5gJBp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-reBcl5gJBp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-reBcl5gJBp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reBcl5gJBp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-reBcl5gJBp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-reBcl5gJBp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-reBcl5gJBp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reBcl6TKTV {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-reBcl6TKTV .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-reBcl6TKTV .pricing {
    padding: 1.5rem;
  }
}
.cid-reBcl6TKTV .plan-header,
.cid-reBcl6TKTV .plan-body {
  background-color: #fff;
}
.cid-reBcl6TKTV .plan-title {
  margin-top: 1.4rem;
}
.cid-reBcl6TKTV .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-reBcl6TKTV .price-figure {
    font-size: 4.25rem;
  }
}
.cid-reBcl6TKTV .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-reBcl6TKTV hr {
  margin: 2rem 0;
}
.cid-reBcl7OcDx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-reBcl7OcDx .title {
  margin-bottom: 2rem;
}
.cid-reBcl7OcDx .mbr-section-subtitle {
  color: #767676;
}
.cid-reBcl7OcDx a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-reBcl7OcDx a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-reBcl7OcDx .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-reBcl7OcDx .input-group-btn {
  display: block;
  text-align: center;
}
.cid-reBcl8Evo6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-reBcl8Evo6 .content {
    text-align: center;
  }
  .cid-reBcl8Evo6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-reBcl8Evo6 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-reBcl8Evo6 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-reBcl8Evo6 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-reBcl8Evo6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-reBcl8Evo6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-reBcl8Evo6 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-reBcl8Evo6 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-reBcl8Evo6 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-reBcl8Evo6 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-reBcl8Evo6 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-reBcl8Evo6 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYTioZQ9A {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYTioZQ9A .mbr-section-subtitle {
  color: #767676;
}
.cid-rgpCV8fHPI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rgpCV8fHPI h2 {
  text-align: left;
}
.cid-rgpCV8fHPI h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rgpCV8fHPI p {
  color: #767676;
  text-align: left;
}
.cid-rgpCV8fHPI .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rgpCV8fHPI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rgpCV8fHPI .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rgpCV8fHPI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgpCV8fHPI .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rgpCV8fHPI .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rgpCV8fHPI .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rgpCV8fHPI .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rgpCV8fHPI .card-img span {
    font-size: 40px !important;
  }
}
.cid-rgpGBORXqK {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rgpGBORXqK .image-block {
  margin: auto;
}
.cid-rgpGBORXqK figcaption {
  position: relative;
}
.cid-rgpGBORXqK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rgpGBORXqK .image-block {
    width: 100% !important;
  }
}
.cid-rgpCV9DzG9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rgpCV9DzG9 .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rgpCV9DzG9 .pricing {
    padding: 1.5rem;
  }
}
.cid-rgpCV9DzG9 .plan-header,
.cid-rgpCV9DzG9 .plan-body {
  background-color: #fff;
}
.cid-rgpCV9DzG9 .plan-title {
  margin-top: 1.4rem;
}
.cid-rgpCV9DzG9 .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rgpCV9DzG9 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rgpCV9DzG9 .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rgpCV9DzG9 hr {
  margin: 2rem 0;
}
.cid-rgpCVaaumh {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rgpCVaaumh .title {
  margin-bottom: 2rem;
}
.cid-rgpCVaaumh .mbr-section-subtitle {
  color: #767676;
}
.cid-rgpCVaaumh a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rgpCVaaumh a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rgpCVaaumh .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rgpCVaaumh .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rgpCVaFZer {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rgpCVaFZer .content {
    text-align: center;
  }
  .cid-rgpCVaFZer .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rgpCVaFZer .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rgpCVaFZer .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rgpCVaFZer .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rgpCVaFZer .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rgpCVaFZer .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rgpCVaFZer .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rgpCVaFZer .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rgpCVaFZer .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rgpCVaFZer .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rgpCVaFZer .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rgpCVaFZer .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYRn8V9Mc {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYRn8V9Mc .mbr-section-subtitle {
  color: #767676;
}
.cid-rgpS91pDjE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rgpS91pDjE h2 {
  text-align: left;
}
.cid-rgpS91pDjE h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rgpS91pDjE p {
  color: #767676;
  text-align: left;
}
.cid-rgpS91pDjE .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rgpS91pDjE .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rgpS91pDjE .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rgpS91pDjE .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgpS91pDjE .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rgpS91pDjE .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rgpS91pDjE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rgpS91pDjE .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rgpS91pDjE .card-img span {
    font-size: 40px !important;
  }
}
.cid-rgpSFshoUz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rgpSFshoUz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rgpSFshoUz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rgpSFshoUz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rgpSFshoUz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rgpSFshoUz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgpSFshoUz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rgpSFshoUz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rgpSFshoUz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rgpSFshoUz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgpS92lYg5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rgpS92lYg5 .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rgpS92lYg5 .pricing {
    padding: 1.5rem;
  }
}
.cid-rgpS92lYg5 .plan-header,
.cid-rgpS92lYg5 .plan-body {
  background-color: #fff;
}
.cid-rgpS92lYg5 .plan-title {
  margin-top: 1.4rem;
}
.cid-rgpS92lYg5 .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rgpS92lYg5 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rgpS92lYg5 .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rgpS92lYg5 hr {
  margin: 2rem 0;
}
.cid-rgpS92RcVa {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rgpS92RcVa .title {
  margin-bottom: 2rem;
}
.cid-rgpS92RcVa .mbr-section-subtitle {
  color: #767676;
}
.cid-rgpS92RcVa a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rgpS92RcVa a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rgpS92RcVa .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rgpS92RcVa .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rgpS93TbGt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rgpS93TbGt .content {
    text-align: center;
  }
  .cid-rgpS93TbGt .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rgpS93TbGt .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rgpS93TbGt .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rgpS93TbGt .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rgpS93TbGt .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rgpS93TbGt .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rgpS93TbGt .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rgpS93TbGt .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rgpS93TbGt .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rgpS93TbGt .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rgpS93TbGt .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rgpS93TbGt .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYPf7akae {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYPf7akae .mbr-section-subtitle {
  color: #767676;
}
.cid-rgYpi7tgNl {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rgYpi7tgNl h2 {
  text-align: left;
}
.cid-rgYpi7tgNl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rgYpi7tgNl p {
  color: #767676;
  text-align: left;
}
.cid-rgYpi7tgNl .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rgYpi7tgNl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rgYpi7tgNl .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rgYpi7tgNl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgYpi7tgNl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rgYpi7tgNl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rgYpi7tgNl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rgYpi7tgNl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rgYpi7tgNl .card-img span {
    font-size: 40px !important;
  }
}
.cid-rgZBsSdG0W {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rgZBsSdG0W .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rgZBsSdG0W .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rgZBsSdG0W .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rgZBsSdG0W .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rgZBsSdG0W .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgZBsSdG0W .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rgZBsSdG0W .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rgZBsSdG0W .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rgZBsSdG0W .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgYpi8DCF1 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rgYpi8DCF1 .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rgYpi8DCF1 .pricing {
    padding: 1.5rem;
  }
}
.cid-rgYpi8DCF1 .plan-header,
.cid-rgYpi8DCF1 .plan-body {
  background-color: #fff;
}
.cid-rgYpi8DCF1 .plan-title {
  margin-top: 1.4rem;
}
.cid-rgYpi8DCF1 .price-figure {
  font-weight: 700;
  color: #465052;
}
@media (max-width: 550px) {
  .cid-rgYpi8DCF1 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rgYpi8DCF1 .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rgYpi8DCF1 hr {
  margin: 2rem 0;
}
.cid-rgYpi9bfzO {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rgYpi9bfzO .title {
  margin-bottom: 2rem;
}
.cid-rgYpi9bfzO .mbr-section-subtitle {
  color: #767676;
}
.cid-rgYpi9bfzO a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rgYpi9bfzO a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rgYpi9bfzO .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rgYpi9bfzO .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rgYpi9MQOE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rgYpi9MQOE .content {
    text-align: center;
  }
  .cid-rgYpi9MQOE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rgYpi9MQOE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rgYpi9MQOE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rgYpi9MQOE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rgYpi9MQOE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rgYpi9MQOE .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rgYpi9MQOE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rgYpi9MQOE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rgYpi9MQOE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rgYpi9MQOE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rgYpi9MQOE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rgYpi9MQOE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYLQOVcw8 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYLQOVcw8 .mbr-section-subtitle {
  color: #767676;
}
.cid-reqM6r4SKd {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-reqM6r4SKd h2 {
  text-align: left;
}
.cid-reqM6r4SKd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-reqM6r4SKd p {
  color: #767676;
  text-align: left;
}
.cid-reqM6r4SKd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-reqM6r4SKd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-reqM6r4SKd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-reqM6r4SKd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-reqM6r4SKd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-reqM6r4SKd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-reqM6r4SKd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-reqM6r4SKd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-reqM6r4SKd .card-img span {
    font-size: 40px !important;
  }
}
.cid-reqUZmpONZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-reqUZmpONZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-reqUZmpONZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-reqUZmpONZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-reqUZmpONZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-reqUZmpONZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reqUZmpONZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-reqUZmpONZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-reqUZmpONZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-reqUZmpONZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reqM6rTmf1 {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-reqM6rTmf1 .image-block {
  margin: auto;
}
.cid-reqM6rTmf1 figcaption {
  position: relative;
}
.cid-reqM6rTmf1 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-reqM6rTmf1 .image-block {
    width: 100% !important;
  }
}
.cid-reqM6sjLeW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-reqM6sjLeW .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-reqM6sjLeW .pricing {
    padding: 1.5rem;
  }
}
.cid-reqM6sjLeW .plan-header,
.cid-reqM6sjLeW .plan-body {
  background-color: #fff;
}
.cid-reqM6sjLeW .plan-title {
  margin-top: 1.4rem;
}
.cid-reqM6sjLeW .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-reqM6sjLeW .price-figure {
    font-size: 4.25rem;
  }
}
.cid-reqM6sjLeW .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-reqM6sjLeW hr {
  margin: 2rem 0;
}
.cid-reqM6sMecG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-reqM6sMecG .title {
  margin-bottom: 2rem;
}
.cid-reqM6sMecG .mbr-section-subtitle {
  color: #767676;
}
.cid-reqM6sMecG a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-reqM6sMecG a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-reqM6sMecG .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-reqM6sMecG .input-group-btn {
  display: block;
  text-align: center;
}
.cid-reqW96IfB8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-reqW96IfB8 .content {
    text-align: center;
  }
  .cid-reqW96IfB8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-reqW96IfB8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-reqW96IfB8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-reqW96IfB8 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-reqW96IfB8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-reqW96IfB8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-reqW96IfB8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-reqW96IfB8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-reqW96IfB8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-reqW96IfB8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-reqW96IfB8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-reqW96IfB8 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-releOeNO19 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #0f7699;
}
.cid-sjYLq6aewZ {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sjYLq6aewZ .mbr-section-subtitle {
  color: #767676;
}
.cid-releOfeGP1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-releOfeGP1 h2 {
  text-align: left;
}
.cid-releOfeGP1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-releOfeGP1 p {
  color: #767676;
  text-align: left;
}
.cid-releOfeGP1 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-releOfeGP1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-releOfeGP1 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-releOfeGP1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-releOfeGP1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-releOfeGP1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-releOfeGP1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-releOfeGP1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-releOfeGP1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-reljf60Qka {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-reljf60Qka .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-reljf60Qka .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-reljf60Qka .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-reljf60Qka .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-reljf60Qka .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reljf60Qka .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-reljf60Qka .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-reljf60Qka .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-reljf60Qka .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-releOgalUx {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-releOgalUx .image-block {
  margin: auto;
}
.cid-releOgalUx figcaption {
  position: relative;
}
.cid-releOgalUx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-releOgalUx .image-block {
    width: 100% !important;
  }
}
.cid-releOgsvTi {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-releOgsvTi .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-releOgsvTi .pricing {
    padding: 1.5rem;
  }
}
.cid-releOgsvTi .plan-header,
.cid-releOgsvTi .plan-body {
  background-color: #fff;
}
.cid-releOgsvTi .plan-title {
  margin-top: 1.4rem;
}
.cid-releOgsvTi .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-releOgsvTi .price-figure {
    font-size: 4.25rem;
  }
}
.cid-releOgsvTi .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-releOgsvTi hr {
  margin: 2rem 0;
}
.cid-releOgX8IK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-releOgX8IK .title {
  margin-bottom: 2rem;
}
.cid-releOgX8IK .mbr-section-subtitle {
  color: #767676;
}
.cid-releOgX8IK a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-releOgX8IK a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-releOgX8IK .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-releOgX8IK .input-group-btn {
  display: block;
  text-align: center;
}
.cid-reljcHh7mE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-reljcHh7mE .content {
    text-align: center;
  }
  .cid-reljcHh7mE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-reljcHh7mE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-reljcHh7mE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-reljcHh7mE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-reljcHh7mE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-reljcHh7mE .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-reljcHh7mE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-reljcHh7mE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-reljcHh7mE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-reljcHh7mE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-reljcHh7mE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-reljcHh7mE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYKvBzHXR {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYKvBzHXR .mbr-section-subtitle {
  color: #767676;
}
.cid-rexkaKqiI5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rexkaKqiI5 h2 {
  text-align: left;
}
.cid-rexkaKqiI5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rexkaKqiI5 p {
  color: #767676;
  text-align: left;
}
.cid-rexkaKqiI5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rexkaKqiI5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rexkaKqiI5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rexkaKqiI5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rexkaKqiI5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rexkaKqiI5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rexkaKqiI5 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rexkaKqiI5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rexkaKqiI5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-rexkaL5QLG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rexkaL5QLG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rexkaL5QLG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rexkaL5QLG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rexkaL5QLG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rexkaL5QLG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rexkaL5QLG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rexkaL5QLG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rexkaL5QLG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rexkaL5QLG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rexkaLCoiQ {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rexkaLCoiQ .image-block {
  margin: auto;
}
.cid-rexkaLCoiQ figcaption {
  position: relative;
}
.cid-rexkaLCoiQ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rexkaLCoiQ .image-block {
    width: 100% !important;
  }
}
.cid-rexkaM0thh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rexkaM0thh .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rexkaM0thh .pricing {
    padding: 1.5rem;
  }
}
.cid-rexkaM0thh .plan-header,
.cid-rexkaM0thh .plan-body {
  background-color: #fff;
}
.cid-rexkaM0thh .plan-title {
  margin-top: 1.4rem;
}
.cid-rexkaM0thh .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rexkaM0thh .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rexkaM0thh .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rexkaM0thh hr {
  margin: 2rem 0;
}
.cid-rexkaMG80j {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rexkaMG80j .title {
  margin-bottom: 2rem;
}
.cid-rexkaMG80j .mbr-section-subtitle {
  color: #767676;
}
.cid-rexkaMG80j a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rexkaMG80j a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rexkaMG80j .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rexkaMG80j .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rexkaNlqjM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rexkaNlqjM .content {
    text-align: center;
  }
  .cid-rexkaNlqjM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rexkaNlqjM .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rexkaNlqjM .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rexkaNlqjM .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rexkaNlqjM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rexkaNlqjM .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rexkaNlqjM .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rexkaNlqjM .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rexkaNlqjM .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rexkaNlqjM .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rexkaNlqjM .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rexkaNlqjM .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-rjw6Dd3WUu {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #0f7699;
}
.cid-rjw6DdwlJh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rjw6DdwlJh h2 {
  text-align: left;
}
.cid-rjw6DdwlJh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rjw6DdwlJh p {
  color: #767676;
  text-align: left;
}
.cid-rjw6DdwlJh .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rjw6DdwlJh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rjw6DdwlJh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rjw6DdwlJh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rjw6DdwlJh .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rjw6DdwlJh .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rjw6DdwlJh .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rjw6DdwlJh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rjw6DdwlJh .card-img span {
    font-size: 40px !important;
  }
}
.cid-rjw6De4WEq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rjw6De4WEq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rjw6De4WEq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rjw6De4WEq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rjw6De4WEq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rjw6De4WEq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rjw6De4WEq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rjw6De4WEq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rjw6De4WEq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rjw6De4WEq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rjw6DeBHEa {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-rjw6DeBHEa .image-block {
  margin: auto;
}
.cid-rjw6DeBHEa figcaption {
  position: relative;
}
.cid-rjw6DeBHEa figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rjw6DeBHEa .image-block {
    width: 100% !important;
  }
}
.cid-rjw6Df1hYE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rjw6Df1hYE .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rjw6Df1hYE .pricing {
    padding: 1.5rem;
  }
}
.cid-rjw6Df1hYE .plan-header,
.cid-rjw6Df1hYE .plan-body {
  background-color: #fff;
}
.cid-rjw6Df1hYE .plan-title {
  margin-top: 1.4rem;
}
.cid-rjw6Df1hYE .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rjw6Df1hYE .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rjw6Df1hYE .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rjw6Df1hYE hr {
  margin: 2rem 0;
}
.cid-rjw6DfBOUi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rjw6DfBOUi .title {
  margin-bottom: 2rem;
}
.cid-rjw6DfBOUi .mbr-section-subtitle {
  color: #767676;
}
.cid-rjw6DfBOUi a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rjw6DfBOUi a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rjw6DfBOUi .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rjw6DfBOUi .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rjw6DgcAdR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rjw6DgcAdR .content {
    text-align: center;
  }
  .cid-rjw6DgcAdR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rjw6DgcAdR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rjw6DgcAdR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rjw6DgcAdR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rjw6DgcAdR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rjw6DgcAdR .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rjw6DgcAdR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rjw6DgcAdR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rjw6DgcAdR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rjw6DgcAdR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rjw6DgcAdR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rjw6DgcAdR .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjGMnl4LHj {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjGMnl4LHj .mbr-section-subtitle {
  color: #767676;
}
.cid-reBybwZ757 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-reBybwZ757 h2 {
  text-align: left;
}
.cid-reBybwZ757 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-reBybwZ757 p {
  color: #767676;
  text-align: left;
}
.cid-reBybwZ757 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-reBybwZ757 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-reBybwZ757 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-reBybwZ757 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-reBybwZ757 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-reBybwZ757 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-reBybwZ757 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-reBybwZ757 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-reBybwZ757 .card-img span {
    font-size: 40px !important;
  }
}
.cid-reBybxCa7M {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-reBybxCa7M .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-reBybxCa7M .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-reBybxCa7M .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-reBybxCa7M .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-reBybxCa7M .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reBybxCa7M .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-reBybxCa7M .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-reBybxCa7M .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-reBybxCa7M .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reBybybeoG {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-reBybybeoG .image-block {
  margin: auto;
}
.cid-reBybybeoG figcaption {
  position: relative;
}
.cid-reBybybeoG figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-reBybybeoG .image-block {
    width: 100% !important;
  }
}
.cid-reBybyDOT6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-reBybyDOT6 .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-reBybyDOT6 .pricing {
    padding: 1.5rem;
  }
}
.cid-reBybyDOT6 .plan-header,
.cid-reBybyDOT6 .plan-body {
  background-color: #fff;
}
.cid-reBybyDOT6 .plan-title {
  margin-top: 1.4rem;
}
.cid-reBybyDOT6 .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-reBybyDOT6 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-reBybyDOT6 .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-reBybyDOT6 hr {
  margin: 2rem 0;
}
.cid-reBybzku8Q {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-reBybzku8Q .title {
  margin-bottom: 2rem;
}
.cid-reBybzku8Q .mbr-section-subtitle {
  color: #767676;
}
.cid-reBybzku8Q a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-reBybzku8Q a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-reBybzku8Q .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-reBybzku8Q .input-group-btn {
  display: block;
  text-align: center;
}
.cid-reBybAclY9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-reBybAclY9 .content {
    text-align: center;
  }
  .cid-reBybAclY9 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-reBybAclY9 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-reBybAclY9 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-reBybAclY9 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-reBybAclY9 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-reBybAclY9 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-reBybAclY9 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-reBybAclY9 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-reBybAclY9 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-reBybAclY9 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-reBybAclY9 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-reBybAclY9 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjsx9bNzn3 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjsx9bNzn3 .mbr-section-subtitle {
  color: #767676;
}
.cid-rgubzToS4R {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rgubzToS4R h2 {
  text-align: left;
}
.cid-rgubzToS4R h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rgubzToS4R p {
  color: #767676;
  text-align: left;
}
.cid-rgubzToS4R .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rgubzToS4R .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rgubzToS4R .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rgubzToS4R .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgubzToS4R .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rgubzToS4R .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rgubzToS4R .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rgubzToS4R .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rgubzToS4R .card-img span {
    font-size: 40px !important;
  }
}
.cid-rgubzTWBg1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rgubzTWBg1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rgubzTWBg1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rgubzTWBg1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rgubzTWBg1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rgubzTWBg1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgubzTWBg1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rgubzTWBg1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rgubzTWBg1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rgubzTWBg1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgut3yEcSV {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rgut3yEcSV .image-block {
  margin: auto;
}
.cid-rgut3yEcSV figcaption {
  position: relative;
}
.cid-rgut3yEcSV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rgut3yEcSV .image-block {
    width: 100% !important;
  }
}
.cid-rgubzUKqhe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rgubzUKqhe .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rgubzUKqhe .pricing {
    padding: 1.5rem;
  }
}
.cid-rgubzUKqhe .plan-header,
.cid-rgubzUKqhe .plan-body {
  background-color: #fff;
}
.cid-rgubzUKqhe .plan-title {
  margin-top: 1.4rem;
}
.cid-rgubzUKqhe .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rgubzUKqhe .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rgubzUKqhe .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rgubzUKqhe hr {
  margin: 2rem 0;
}
.cid-rgubzVfUgH {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rgubzVfUgH .title {
  margin-bottom: 2rem;
}
.cid-rgubzVfUgH .mbr-section-subtitle {
  color: #767676;
}
.cid-rgubzVfUgH a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rgubzVfUgH a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rgubzVfUgH .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rgubzVfUgH .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rgubzVKrbv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rgubzVKrbv .content {
    text-align: center;
  }
  .cid-rgubzVKrbv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rgubzVKrbv .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rgubzVKrbv .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rgubzVKrbv .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rgubzVKrbv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rgubzVKrbv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rgubzVKrbv .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rgubzVKrbv .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rgubzVKrbv .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rgubzVKrbv .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rgubzVKrbv .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rgubzVKrbv .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjGJfdhOxr {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjGJfdhOxr .mbr-section-subtitle {
  color: #767676;
}
.cid-rgAwJffyj3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rgAwJffyj3 h2 {
  text-align: left;
}
.cid-rgAwJffyj3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rgAwJffyj3 p {
  color: #767676;
  text-align: left;
}
.cid-rgAwJffyj3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rgAwJffyj3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rgAwJffyj3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rgAwJffyj3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rgAwJffyj3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rgAwJffyj3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rgAwJffyj3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rgAwJffyj3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rgAwJffyj3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-rgAwJfPJdK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rgAwJfPJdK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rgAwJfPJdK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rgAwJfPJdK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rgAwJfPJdK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rgAwJfPJdK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgAwJfPJdK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rgAwJfPJdK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rgAwJfPJdK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rgAwJfPJdK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rgAwJglsT8 {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rgAwJglsT8 .image-block {
  margin: auto;
}
.cid-rgAwJglsT8 figcaption {
  position: relative;
}
.cid-rgAwJglsT8 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rgAwJglsT8 .image-block {
    width: 100% !important;
  }
}
.cid-rgAwJgGwzR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rgAwJgGwzR .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rgAwJgGwzR .pricing {
    padding: 1.5rem;
  }
}
.cid-rgAwJgGwzR .plan-header,
.cid-rgAwJgGwzR .plan-body {
  background-color: #fff;
}
.cid-rgAwJgGwzR .plan-title {
  margin-top: 1.4rem;
}
.cid-rgAwJgGwzR .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rgAwJgGwzR .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rgAwJgGwzR .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rgAwJgGwzR hr {
  margin: 2rem 0;
}
.cid-rgAwJhgOeM {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rgAwJhgOeM .title {
  margin-bottom: 2rem;
}
.cid-rgAwJhgOeM .mbr-section-subtitle {
  color: #767676;
}
.cid-rgAwJhgOeM a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rgAwJhgOeM a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rgAwJhgOeM .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rgAwJhgOeM .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rgAwJhMwGf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rgAwJhMwGf .content {
    text-align: center;
  }
  .cid-rgAwJhMwGf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rgAwJhMwGf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rgAwJhMwGf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rgAwJhMwGf .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rgAwJhMwGf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rgAwJhMwGf .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rgAwJhMwGf .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rgAwJhMwGf .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rgAwJhMwGf .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rgAwJhMwGf .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rgAwJhMwGf .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rgAwJhMwGf .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjGIvmSSJ8 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjGIvmSSJ8 .mbr-section-subtitle {
  color: #767676;
}
.cid-rel1rt4QQr {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rel1rt4QQr h2 {
  text-align: left;
}
.cid-rel1rt4QQr h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rel1rt4QQr p {
  color: #767676;
  text-align: left;
}
.cid-rel1rt4QQr .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rel1rt4QQr .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rel1rt4QQr .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rel1rt4QQr .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rel1rt4QQr .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rel1rt4QQr .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rel1rt4QQr .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rel1rt4QQr .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rel1rt4QQr .card-img span {
    font-size: 40px !important;
  }
}
.cid-rel4nsUaCk {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rel4nsUaCk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rel4nsUaCk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rel4nsUaCk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rel4nsUaCk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rel4nsUaCk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rel4nsUaCk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rel4nsUaCk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rel4nsUaCk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rel4nsUaCk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rel1rtYZQy {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rel1rtYZQy .image-block {
  margin: auto;
}
.cid-rel1rtYZQy figcaption {
  position: relative;
}
.cid-rel1rtYZQy figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rel1rtYZQy .image-block {
    width: 100% !important;
  }
}
.cid-rel1ruhNqG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rel1ruhNqG .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rel1ruhNqG .pricing {
    padding: 1.5rem;
  }
}
.cid-rel1ruhNqG .plan-header,
.cid-rel1ruhNqG .plan-body {
  background-color: #fff;
}
.cid-rel1ruhNqG .plan-title {
  margin-top: 1.4rem;
}
.cid-rel1ruhNqG .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rel1ruhNqG .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rel1ruhNqG .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rel1ruhNqG hr {
  margin: 2rem 0;
}
.cid-rel1ruYDIe {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rel1ruYDIe .title {
  margin-bottom: 2rem;
}
.cid-rel1ruYDIe .mbr-section-subtitle {
  color: #767676;
}
.cid-rel1ruYDIe a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rel1ruYDIe a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rel1ruYDIe .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rel1ruYDIe .input-group-btn {
  display: block;
  text-align: center;
}
.cid-relGR35ZTo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-relGR35ZTo .content {
    text-align: center;
  }
  .cid-relGR35ZTo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-relGR35ZTo .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-relGR35ZTo .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-relGR35ZTo .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-relGR35ZTo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-relGR35ZTo .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-relGR35ZTo .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-relGR35ZTo .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-relGR35ZTo .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-relGR35ZTo .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-relGR35ZTo .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-relGR35ZTo .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-reBlngkIHN {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #0f7699;
}
.cid-reBlngQ3q4 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-reBlngQ3q4 h2 {
  text-align: left;
}
.cid-reBlngQ3q4 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-reBlngQ3q4 p {
  color: #767676;
  text-align: left;
}
.cid-reBlngQ3q4 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-reBlngQ3q4 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-reBlngQ3q4 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-reBlngQ3q4 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-reBlngQ3q4 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-reBlngQ3q4 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-reBlngQ3q4 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-reBlngQ3q4 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-reBlngQ3q4 .card-img span {
    font-size: 40px !important;
  }
}
.cid-reBlnhqJF2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-reBlnhqJF2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-reBlnhqJF2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-reBlnhqJF2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-reBlnhqJF2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-reBlnhqJF2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reBlnhqJF2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-reBlnhqJF2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-reBlnhqJF2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-reBlnhqJF2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reBlnhZGiu {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-reBlnhZGiu .image-block {
  margin: auto;
}
.cid-reBlnhZGiu figcaption {
  position: relative;
}
.cid-reBlnhZGiu figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-reBlnhZGiu .image-block {
    width: 100% !important;
  }
}
.cid-reBlninFSE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-reBlninFSE .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-reBlninFSE .pricing {
    padding: 1.5rem;
  }
}
.cid-reBlninFSE .plan-header,
.cid-reBlninFSE .plan-body {
  background-color: #fff;
}
.cid-reBlninFSE .plan-title {
  margin-top: 1.4rem;
}
.cid-reBlninFSE .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-reBlninFSE .price-figure {
    font-size: 4.25rem;
  }
}
.cid-reBlninFSE .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-reBlninFSE hr {
  margin: 2rem 0;
}
.cid-reBlnj7S8v {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-reBlnj7S8v .title {
  margin-bottom: 2rem;
}
.cid-reBlnj7S8v .mbr-section-subtitle {
  color: #767676;
}
.cid-reBlnj7S8v a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-reBlnj7S8v a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-reBlnj7S8v .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-reBlnj7S8v .input-group-btn {
  display: block;
  text-align: center;
}
.cid-reBlnjDgDj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-reBlnjDgDj .content {
    text-align: center;
  }
  .cid-reBlnjDgDj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-reBlnjDgDj .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-reBlnjDgDj .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-reBlnjDgDj .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-reBlnjDgDj .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-reBlnjDgDj .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-reBlnjDgDj .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-reBlnjDgDj .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-reBlnjDgDj .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-reBlnjDgDj .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-reBlnjDgDj .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-reBlnjDgDj .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjH3HbjMzZ {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjH3HbjMzZ .mbr-section-subtitle {
  color: #767676;
}
.cid-rfRgKEJADx {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rfRgKEJADx h2 {
  text-align: left;
}
.cid-rfRgKEJADx h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rfRgKEJADx p {
  color: #767676;
  text-align: left;
}
.cid-rfRgKEJADx .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rfRgKEJADx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rfRgKEJADx .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rfRgKEJADx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rfRgKEJADx .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rfRgKEJADx .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rfRgKEJADx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rfRgKEJADx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rfRgKEJADx .card-img span {
    font-size: 40px !important;
  }
}
.cid-rfRgKFpHDi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rfRgKFpHDi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rfRgKFpHDi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rfRgKFpHDi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rfRgKFpHDi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rfRgKFpHDi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rfRgKFpHDi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rfRgKFpHDi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rfRgKFpHDi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rfRgKFpHDi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rfRgKFVn2m {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-rfRgKFVn2m .image-block {
  margin: auto;
}
.cid-rfRgKFVn2m figcaption {
  position: relative;
}
.cid-rfRgKFVn2m figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rfRgKFVn2m .image-block {
    width: 100% !important;
  }
}
.cid-rfRgKGs1NA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rfRgKGs1NA .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rfRgKGs1NA .pricing {
    padding: 1.5rem;
  }
}
.cid-rfRgKGs1NA .plan-header,
.cid-rfRgKGs1NA .plan-body {
  background-color: #fff;
}
.cid-rfRgKGs1NA .plan-title {
  margin-top: 1.4rem;
}
.cid-rfRgKGs1NA .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rfRgKGs1NA .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rfRgKGs1NA .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rfRgKGs1NA hr {
  margin: 2rem 0;
}
.cid-rfRgKH5Utn {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rfRgKH5Utn .title {
  margin-bottom: 2rem;
}
.cid-rfRgKH5Utn .mbr-section-subtitle {
  color: #767676;
}
.cid-rfRgKH5Utn a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rfRgKH5Utn a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rfRgKH5Utn .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rfRgKH5Utn .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rfRgKHEdmd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rfRgKHEdmd .content {
    text-align: center;
  }
  .cid-rfRgKHEdmd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rfRgKHEdmd .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rfRgKHEdmd .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rfRgKHEdmd .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rfRgKHEdmd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rfRgKHEdmd .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rfRgKHEdmd .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rfRgKHEdmd .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rfRgKHEdmd .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rfRgKHEdmd .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rfRgKHEdmd .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rfRgKHEdmd .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sj8wGSv7uh {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sj8wGSv7uh .mbr-section-subtitle {
  color: #767676;
}
.cid-rGbnJyuoZC {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rGbnJyuoZC h2 {
  text-align: left;
}
.cid-rGbnJyuoZC h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rGbnJyuoZC p {
  color: #767676;
  text-align: left;
}
.cid-rGbnJyuoZC .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rGbnJyuoZC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rGbnJyuoZC .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rGbnJyuoZC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rGbnJyuoZC .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rGbnJyuoZC .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rGbnJyuoZC .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rGbnJyuoZC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rGbnJyuoZC .card-img span {
    font-size: 40px !important;
  }
}
.cid-rGbnJyuoZC P {
  color: #465052;
}
.cid-rGbnJz6LAJ {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rGbnJz6LAJ .image-block {
  margin: auto;
}
.cid-rGbnJz6LAJ figcaption {
  position: relative;
}
.cid-rGbnJz6LAJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rGbnJz6LAJ .image-block {
    width: 100% !important;
  }
}
.cid-rGbnJzpLuK {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rGbnJzpLuK .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rGbnJzpLuK .pricing {
    padding: 1.5rem;
  }
}
.cid-rGbnJzpLuK .plan-header,
.cid-rGbnJzpLuK .plan-body {
  background-color: #fff;
}
.cid-rGbnJzpLuK .plan-title {
  margin-top: 1.4rem;
}
.cid-rGbnJzpLuK .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rGbnJzpLuK .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rGbnJzpLuK .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rGbnJzpLuK hr {
  margin: 2rem 0;
}
.cid-rGbnJzTIVk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rGbnJzTIVk .title {
  margin-bottom: 2rem;
}
.cid-rGbnJzTIVk .mbr-section-subtitle {
  color: #767676;
}
.cid-rGbnJzTIVk a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rGbnJzTIVk a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rGbnJzTIVk .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rGbnJzTIVk .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rGbnJAl9xw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rGbnJAl9xw .content {
    text-align: center;
  }
  .cid-rGbnJAl9xw .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rGbnJAl9xw .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rGbnJAl9xw .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rGbnJAl9xw .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rGbnJAl9xw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rGbnJAl9xw .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rGbnJAl9xw .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rGbnJAl9xw .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rGbnJAl9xw .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rGbnJAl9xw .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rGbnJAl9xw .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rGbnJAl9xw .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-silMj3Mlai {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-silMj3Mlai .mbr-section-subtitle {
  color: #767676;
}
.cid-rLrdFcEfHK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rLrdFcEfHK h2 {
  text-align: left;
}
.cid-rLrdFcEfHK h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rLrdFcEfHK p {
  color: #767676;
  text-align: left;
}
.cid-rLrdFcEfHK .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rLrdFcEfHK .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rLrdFcEfHK .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rLrdFcEfHK .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rLrdFcEfHK .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rLrdFcEfHK .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rLrdFcEfHK .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rLrdFcEfHK .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rLrdFcEfHK .card-img span {
    font-size: 40px !important;
  }
}
.cid-rLribabQlL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rLribabQlL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rLribabQlL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rLribabQlL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rLribabQlL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rLribabQlL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rLribabQlL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rLribabQlL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rLribabQlL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rLribabQlL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sifUYkvPK9 {
  background: #149dcc;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #149dcc, #ffffff);
}
.cid-sifUYkvPK9 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-sifUYkvPK9 .video-block {
    width: 100% !important;
  }
}
.cid-rLrdFfLfjU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rLrdFfLfjU .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rLrdFfLfjU .pricing {
    padding: 1.5rem;
  }
}
.cid-rLrdFfLfjU .plan-header,
.cid-rLrdFfLfjU .plan-body {
  background-color: #fff;
}
.cid-rLrdFfLfjU .plan-title {
  margin-top: 1.4rem;
}
.cid-rLrdFfLfjU .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rLrdFfLfjU .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rLrdFfLfjU .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rLrdFfLfjU hr {
  margin: 2rem 0;
}
.cid-rLrdFp6E5K {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rLrdFp6E5K .title {
  margin-bottom: 2rem;
}
.cid-rLrdFp6E5K .mbr-section-subtitle {
  color: #767676;
}
.cid-rLrdFp6E5K a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rLrdFp6E5K a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rLrdFp6E5K .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rLrdFp6E5K .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rLrdFrcMRj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rLrdFrcMRj .content {
    text-align: center;
  }
  .cid-rLrdFrcMRj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rLrdFrcMRj .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rLrdFrcMRj .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rLrdFrcMRj .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rLrdFrcMRj .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rLrdFrcMRj .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rLrdFrcMRj .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rLrdFrcMRj .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rLrdFrcMRj .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rLrdFrcMRj .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rLrdFrcMRj .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rLrdFrcMRj .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sj8xQ6mXEL {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sj8xQ6mXEL .mbr-section-subtitle {
  color: #767676;
}
.cid-reldgYvq4L {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-reldgYvq4L h2 {
  text-align: left;
}
.cid-reldgYvq4L h4 {
  text-align: left;
  font-weight: 500;
}
.cid-reldgYvq4L p {
  color: #767676;
  text-align: left;
}
.cid-reldgYvq4L .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-reldgYvq4L .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-reldgYvq4L .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-reldgYvq4L .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-reldgYvq4L .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-reldgYvq4L .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-reldgYvq4L .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-reldgYvq4L .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-reldgYvq4L .card-img span {
    font-size: 40px !important;
  }
}
.cid-reldgYvq4L P {
  color: #465052;
}
.cid-reldgZGXOi {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-reldgZGXOi .image-block {
  margin: auto;
}
.cid-reldgZGXOi figcaption {
  position: relative;
}
.cid-reldgZGXOi figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-reldgZGXOi .image-block {
    width: 100% !important;
  }
}
.cid-reldh03n4h {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-reldh03n4h .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-reldh03n4h .pricing {
    padding: 1.5rem;
  }
}
.cid-reldh03n4h .plan-header,
.cid-reldh03n4h .plan-body {
  background-color: #fff;
}
.cid-reldh03n4h .plan-title {
  margin-top: 1.4rem;
}
.cid-reldh03n4h .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-reldh03n4h .price-figure {
    font-size: 4.25rem;
  }
}
.cid-reldh03n4h .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-reldh03n4h hr {
  margin: 2rem 0;
}
.cid-reldh0Flat {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-reldh0Flat .title {
  margin-bottom: 2rem;
}
.cid-reldh0Flat .mbr-section-subtitle {
  color: #767676;
}
.cid-reldh0Flat a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-reldh0Flat a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-reldh0Flat .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-reldh0Flat .input-group-btn {
  display: block;
  text-align: center;
}
.cid-relqDYHm4A {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-relqDYHm4A .content {
    text-align: center;
  }
  .cid-relqDYHm4A .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-relqDYHm4A .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-relqDYHm4A .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-relqDYHm4A .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-relqDYHm4A .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-relqDYHm4A .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-relqDYHm4A .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-relqDYHm4A .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-relqDYHm4A .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-relqDYHm4A .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-relqDYHm4A .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-relqDYHm4A .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sj8xNHYtxu {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sj8xNHYtxu .mbr-section-subtitle {
  color: #767676;
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sj8xrDFRKE {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sj8xrDFRKE .mbr-section-subtitle {
  color: #767676;
}
.cid-rSCuq4dziv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rSCuq4dziv h2 {
  text-align: left;
}
.cid-rSCuq4dziv h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rSCuq4dziv p {
  color: #767676;
  text-align: left;
}
.cid-rSCuq4dziv .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rSCuq4dziv .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rSCuq4dziv .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rSCuq4dziv .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rSCuq4dziv .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rSCuq4dziv .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rSCuq4dziv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rSCuq4dziv .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rSCuq4dziv .card-img span {
    font-size: 40px !important;
  }
}
.cid-rSCuq4dziv P {
  color: #465052;
}
.cid-rSCuq5DxVC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rSCuq5DxVC .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rSCuq5DxVC .pricing {
    padding: 1.5rem;
  }
}
.cid-rSCuq5DxVC .plan-header,
.cid-rSCuq5DxVC .plan-body {
  background-color: #fff;
}
.cid-rSCuq5DxVC .plan-title {
  margin-top: 1.4rem;
}
.cid-rSCuq5DxVC .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rSCuq5DxVC .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rSCuq5DxVC .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rSCuq5DxVC hr {
  margin: 2rem 0;
}
.cid-rSCuq6CwRk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rSCuq6CwRk .title {
  margin-bottom: 2rem;
}
.cid-rSCuq6CwRk .mbr-section-subtitle {
  color: #767676;
}
.cid-rSCuq6CwRk a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rSCuq6CwRk a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rSCuq6CwRk .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rSCuq6CwRk .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rSCuq7HP2I {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rSCuq7HP2I .content {
    text-align: center;
  }
  .cid-rSCuq7HP2I .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rSCuq7HP2I .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rSCuq7HP2I .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rSCuq7HP2I .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rSCuq7HP2I .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rSCuq7HP2I .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rSCuq7HP2I .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rSCuq7HP2I .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rSCuq7HP2I .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rSCuq7HP2I .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rSCuq7HP2I .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rSCuq7HP2I .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjHdxIMxkR {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjHdxIMxkR .mbr-section-subtitle {
  color: #767676;
}
.cid-rTK5NhQyLc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rTK5NhQyLc h2 {
  text-align: left;
}
.cid-rTK5NhQyLc h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rTK5NhQyLc p {
  color: #767676;
  text-align: left;
}
.cid-rTK5NhQyLc .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rTK5NhQyLc .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rTK5NhQyLc .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rTK5NhQyLc .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rTK5NhQyLc .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rTK5NhQyLc .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rTK5NhQyLc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rTK5NhQyLc .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rTK5NhQyLc .card-img span {
    font-size: 40px !important;
  }
}
.cid-rTK5NiuKFp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rTK5NiuKFp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rTK5NiuKFp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rTK5NiuKFp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rTK5NiuKFp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rTK5NiuKFp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rTK5NiuKFp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rTK5NiuKFp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rTK5NiuKFp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rTK5NiuKFp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rTK5NjhagS {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
}
.cid-rTK5NjhagS .image-block {
  margin: auto;
}
.cid-rTK5NjhagS figcaption {
  position: relative;
}
.cid-rTK5NjhagS figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rTK5NjhagS .image-block {
    width: 100% !important;
  }
}
.cid-rTK5NjOgjK {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rTK5NjOgjK .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rTK5NjOgjK .pricing {
    padding: 1.5rem;
  }
}
.cid-rTK5NjOgjK .plan-header,
.cid-rTK5NjOgjK .plan-body {
  background-color: #fff;
}
.cid-rTK5NjOgjK .plan-title {
  margin-top: 1.4rem;
}
.cid-rTK5NjOgjK .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rTK5NjOgjK .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rTK5NjOgjK .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rTK5NjOgjK hr {
  margin: 2rem 0;
}
.cid-rTK5NkFAx2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rTK5NkFAx2 .title {
  margin-bottom: 2rem;
}
.cid-rTK5NkFAx2 .mbr-section-subtitle {
  color: #767676;
}
.cid-rTK5NkFAx2 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rTK5NkFAx2 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rTK5NkFAx2 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rTK5NkFAx2 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rTK5NlhwYx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rTK5NlhwYx .content {
    text-align: center;
  }
  .cid-rTK5NlhwYx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rTK5NlhwYx .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rTK5NlhwYx .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rTK5NlhwYx .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rTK5NlhwYx .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rTK5NlhwYx .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rTK5NlhwYx .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rTK5NlhwYx .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rTK5NlhwYx .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rTK5NlhwYx .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rTK5NlhwYx .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rTK5NlhwYx .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-simqYUe18B {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-simqYUe18B .mbr-section-subtitle {
  color: #767676;
}
.cid-rkuTC0SkW5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rkuTC0SkW5 .card-img {
  background-color: #fff;
}
.cid-rkuTC0SkW5 .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rkuTC0SkW5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rkuTC0SkW5 p {
  text-align: left;
}
.cid-rkuTC0SkW5 .mbr-text {
  color: #767676;
}
.cid-rkuTC0SkW5 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rkuTC0SkW5 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rkuTC0SkW5 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rkG4JwQ5jp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rkG4JwQ5jp .card-img {
  background-color: #fff;
}
.cid-rkG4JwQ5jp .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rkG4JwQ5jp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rkG4JwQ5jp p {
  text-align: left;
}
.cid-rkG4JwQ5jp .mbr-text {
  color: #767676;
}
.cid-rkG4JwQ5jp .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rkG4JwQ5jp .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rkG4JwQ5jp .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rosMgrawwz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rosMgrawwz .card-img {
  background-color: #fff;
}
.cid-rosMgrawwz .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rosMgrawwz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rosMgrawwz p {
  text-align: left;
}
.cid-rosMgrawwz .mbr-text {
  color: #767676;
}
.cid-rosMgrawwz .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rosMgrawwz .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rosMgrawwz .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rps63Cyzri {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rps63Cyzri .card-img {
  background-color: #fff;
}
.cid-rps63Cyzri .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rps63Cyzri h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rps63Cyzri p {
  text-align: left;
}
.cid-rps63Cyzri .mbr-text {
  color: #767676;
}
.cid-rps63Cyzri .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rps63Cyzri .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rps63Cyzri .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rK2AOQLk1O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rK2AOQLk1O .card-img {
  background-color: #fff;
}
.cid-rK2AOQLk1O .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rK2AOQLk1O h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rK2AOQLk1O p {
  text-align: left;
}
.cid-rK2AOQLk1O .mbr-text {
  color: #767676;
}
.cid-rK2AOQLk1O .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rK2AOQLk1O .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rK2AOQLk1O .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rTRzSpTrMg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rTRzSpTrMg .card-img {
  background-color: #fff;
}
.cid-rTRzSpTrMg .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rTRzSpTrMg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rTRzSpTrMg p {
  text-align: left;
}
.cid-rTRzSpTrMg .mbr-text {
  color: #767676;
}
.cid-rTRzSpTrMg .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rTRzSpTrMg .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rTRzSpTrMg .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sjYv37DuO2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-sjYv37DuO2 .card-img {
  background-color: #fff;
}
.cid-sjYv37DuO2 .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sjYv37DuO2 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sjYv37DuO2 p {
  text-align: left;
}
.cid-sjYv37DuO2 .mbr-text {
  color: #767676;
}
.cid-sjYv37DuO2 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sjYv37DuO2 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sjYv37DuO2 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rkuTC2rvvD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rkuTC2rvvD .title {
  margin-bottom: 2rem;
}
.cid-rkuTC2rvvD .mbr-section-subtitle {
  color: #767676;
}
.cid-rkuTC2rvvD a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rkuTC2rvvD a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rkuTC2rvvD .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rkuTC2rvvD .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rkuTC309Ad {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rkuTC309Ad .content {
    text-align: center;
  }
  .cid-rkuTC309Ad .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rkuTC309Ad .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rkuTC309Ad .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rkuTC309Ad .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rkuTC309Ad .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rkuTC309Ad .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rkuTC309Ad .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rkuTC309Ad .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rkuTC309Ad .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rkuTC309Ad .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rkuTC309Ad .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rkuTC309Ad .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-reslq37zoC {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/murray-womens-sports-polo-2300-ladies-with-logo-service.jpg");
}
.cid-reslq37zoC .mbr-text {
  color: #073b4c;
}
.cid-reslq37zoC H2 {
  color: #4f4943;
}
.cid-reslq37zoC .mbr-section-subtitle {
  color: #465052;
}
.cid-reslq3yMrS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-reslq3yMrS h2 {
  text-align: left;
}
.cid-reslq3yMrS h4 {
  text-align: left;
  font-weight: 500;
}
.cid-reslq3yMrS p {
  color: #767676;
  text-align: left;
}
.cid-reslq3yMrS .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-reslq3yMrS .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-reslq3yMrS .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-reslq3yMrS .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-reslq3yMrS .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-reslq3yMrS .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-reslq3yMrS .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-reslq3yMrS .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-reslq3yMrS .card-img span {
    font-size: 40px !important;
  }
}
.cid-reslq4aZ05 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-reslq4aZ05 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-reslq4aZ05 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-reslq4aZ05 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-reslq4aZ05 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-reslq4aZ05 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reslq4aZ05 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-reslq4aZ05 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-reslq4aZ05 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-reslq4aZ05 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reslq4UAwV {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-reslq4UAwV .image-block {
  margin: auto;
}
.cid-reslq4UAwV figcaption {
  position: relative;
}
.cid-reslq4UAwV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-reslq4UAwV .image-block {
    width: 100% !important;
  }
}
.cid-reslq5oK3q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-reslq5oK3q .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-reslq5oK3q .pricing {
    padding: 1.5rem;
  }
}
.cid-reslq5oK3q .plan-header,
.cid-reslq5oK3q .plan-body {
  background-color: #fff;
}
.cid-reslq5oK3q .plan-title {
  margin-top: 1.4rem;
}
.cid-reslq5oK3q .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-reslq5oK3q .price-figure {
    font-size: 4.25rem;
  }
}
.cid-reslq5oK3q .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-reslq5oK3q hr {
  margin: 2rem 0;
}
.cid-reslq6bBYJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-reslq6bBYJ .title {
  margin-bottom: 2rem;
}
.cid-reslq6bBYJ .mbr-section-subtitle {
  color: #767676;
}
.cid-reslq6bBYJ a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-reslq6bBYJ a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-reslq6bBYJ .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-reslq6bBYJ .input-group-btn {
  display: block;
  text-align: center;
}
.cid-reslq6Zg73 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-reslq6Zg73 .content {
    text-align: center;
  }
  .cid-reslq6Zg73 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-reslq6Zg73 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-reslq6Zg73 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-reslq6Zg73 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-reslq6Zg73 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-reslq6Zg73 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-reslq6Zg73 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-reslq6Zg73 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-reslq6Zg73 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-reslq6Zg73 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-reslq6Zg73 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-reslq6Zg73 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-rICI7iRaCl {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #0f7699;
}
.cid-rICI7iRaCl .mbr-text {
  color: #ffffff;
}
.cid-rICI7iRaCl H2 {
  color: #ffffff;
}
.cid-rICI7iRaCl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rICI7iRaCl .mbr-text B {
  color: #f7ed4a;
}
.cid-rICI7jpTkD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rICI7jpTkD h2 {
  text-align: left;
}
.cid-rICI7jpTkD h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rICI7jpTkD p {
  color: #767676;
  text-align: left;
}
.cid-rICI7jpTkD .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rICI7jpTkD .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rICI7jpTkD .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rICI7jpTkD .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rICI7jpTkD .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rICI7jpTkD .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rICI7jpTkD .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rICI7jpTkD .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rICI7jpTkD .card-img span {
    font-size: 40px !important;
  }
}
.cid-rICI7k1vfP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rICI7k1vfP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rICI7k1vfP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rICI7k1vfP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rICI7k1vfP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rICI7k1vfP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rICI7k1vfP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rICI7k1vfP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rICI7k1vfP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rICI7k1vfP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rICI7kwaBI {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rICI7kwaBI .image-block {
  margin: auto;
}
.cid-rICI7kwaBI figcaption {
  position: relative;
}
.cid-rICI7kwaBI figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rICI7kwaBI .image-block {
    width: 100% !important;
  }
}
.cid-rICI7kWCCv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rICI7kWCCv .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rICI7kWCCv .pricing {
    padding: 1.5rem;
  }
}
.cid-rICI7kWCCv .plan-header,
.cid-rICI7kWCCv .plan-body {
  background-color: #fff;
}
.cid-rICI7kWCCv .plan-title {
  margin-top: 1.4rem;
}
.cid-rICI7kWCCv .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rICI7kWCCv .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rICI7kWCCv .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rICI7kWCCv hr {
  margin: 2rem 0;
}
.cid-rICI7lNZaa {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rICI7lNZaa .title {
  margin-bottom: 2rem;
}
.cid-rICI7lNZaa .mbr-section-subtitle {
  color: #767676;
}
.cid-rICI7lNZaa a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rICI7lNZaa a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rICI7lNZaa .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rICI7lNZaa .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rICI7mDMKs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rICI7mDMKs .content {
    text-align: center;
  }
  .cid-rICI7mDMKs .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rICI7mDMKs .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rICI7mDMKs .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rICI7mDMKs .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rICI7mDMKs .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rICI7mDMKs .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rICI7mDMKs .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rICI7mDMKs .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rICI7mDMKs .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rICI7mDMKs .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rICI7mDMKs .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rICI7mDMKs .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-rJzHo0ITdT {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #0f7699;
}
.cid-rJzHo0ITdT .mbr-text {
  color: #ffffff;
}
.cid-rJzHo0ITdT H2 {
  color: #ffffff;
}
.cid-rJzHo0ITdT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rJzHo0ITdT .mbr-text B {
  color: #f7ed4a;
}
.cid-rJzHo18Bml {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rJzHo18Bml h2 {
  text-align: left;
}
.cid-rJzHo18Bml h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rJzHo18Bml p {
  color: #767676;
  text-align: left;
}
.cid-rJzHo18Bml .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rJzHo18Bml .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rJzHo18Bml .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rJzHo18Bml .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rJzHo18Bml .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rJzHo18Bml .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rJzHo18Bml .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rJzHo18Bml .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rJzHo18Bml .card-img span {
    font-size: 40px !important;
  }
}
.cid-rJzHo2OYvs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rJzHo2OYvs .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rJzHo2OYvs .pricing {
    padding: 1.5rem;
  }
}
.cid-rJzHo2OYvs .plan-header,
.cid-rJzHo2OYvs .plan-body {
  background-color: #fff;
}
.cid-rJzHo2OYvs .plan-title {
  margin-top: 1.4rem;
}
.cid-rJzHo2OYvs .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rJzHo2OYvs .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rJzHo2OYvs .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rJzHo2OYvs hr {
  margin: 2rem 0;
}
.cid-rJzHo3mzjA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rJzHo3mzjA .title {
  margin-bottom: 2rem;
}
.cid-rJzHo3mzjA .mbr-section-subtitle {
  color: #767676;
}
.cid-rJzHo3mzjA a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rJzHo3mzjA a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rJzHo3mzjA .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rJzHo3mzjA .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rJzHo3QipA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rJzHo3QipA .content {
    text-align: center;
  }
  .cid-rJzHo3QipA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rJzHo3QipA .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rJzHo3QipA .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rJzHo3QipA .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rJzHo3QipA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rJzHo3QipA .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rJzHo3QipA .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rJzHo3QipA .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rJzHo3QipA .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rJzHo3QipA .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rJzHo3QipA .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rJzHo3QipA .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-rz9VudqeQs {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/cotton-polo-for-sporty-corporate-wear-2115001-with-logo-service-600px.jpg");
}
.cid-rz9VudqeQs .mbr-text {
  color: #ffffff;
}
.cid-rz9VudqeQs H2 {
  color: #ffffff;
}
.cid-rz9VudqeQs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rz9Vue3qj7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rz9Vue3qj7 h2 {
  text-align: left;
}
.cid-rz9Vue3qj7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rz9Vue3qj7 p {
  color: #767676;
  text-align: left;
}
.cid-rz9Vue3qj7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rz9Vue3qj7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rz9Vue3qj7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rz9Vue3qj7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rz9Vue3qj7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rz9Vue3qj7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rz9Vue3qj7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rz9Vue3qj7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rz9Vue3qj7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-rz9VueXZfb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rz9VueXZfb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rz9VueXZfb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rz9VueXZfb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rz9VueXZfb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rz9VueXZfb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rz9VueXZfb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rz9VueXZfb .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rz9VueXZfb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rz9VueXZfb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rz9VugdPWo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rz9VugdPWo .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rz9VugdPWo .pricing {
    padding: 1.5rem;
  }
}
.cid-rz9VugdPWo .plan-header,
.cid-rz9VugdPWo .plan-body {
  background-color: #fff;
}
.cid-rz9VugdPWo .plan-title {
  margin-top: 1.4rem;
}
.cid-rz9VugdPWo .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rz9VugdPWo .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rz9VugdPWo .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rz9VugdPWo hr {
  margin: 2rem 0;
}
.cid-rz9Vuh4AI3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rz9Vuh4AI3 .title {
  margin-bottom: 2rem;
}
.cid-rz9Vuh4AI3 .mbr-section-subtitle {
  color: #767676;
}
.cid-rz9Vuh4AI3 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rz9Vuh4AI3 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rz9Vuh4AI3 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rz9Vuh4AI3 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rz9Vui3I6l {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rz9Vui3I6l .content {
    text-align: center;
  }
  .cid-rz9Vui3I6l .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rz9Vui3I6l .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rz9Vui3I6l .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rz9Vui3I6l .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rz9Vui3I6l .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rz9Vui3I6l .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rz9Vui3I6l .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rz9Vui3I6l .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rz9Vui3I6l .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rz9Vui3I6l .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rz9Vui3I6l .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rz9Vui3I6l .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-reVlsvMiNs {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/eureka-kids-school-sport-3304-green-white-with-logo-service-copy.jpg");
}
.cid-reVlsvMiNs .mbr-text {
  color: #ffffff;
}
.cid-reVlsvMiNs H2 {
  color: #ffffff;
}
.cid-reVlsvMiNs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-reVlswdgkt {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-reVlswdgkt h2 {
  text-align: left;
}
.cid-reVlswdgkt h4 {
  text-align: left;
  font-weight: 500;
}
.cid-reVlswdgkt p {
  color: #767676;
  text-align: left;
}
.cid-reVlswdgkt .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-reVlswdgkt .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-reVlswdgkt .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-reVlswdgkt .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-reVlswdgkt .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-reVlswdgkt .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-reVlswdgkt .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-reVlswdgkt .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-reVlswdgkt .card-img span {
    font-size: 40px !important;
  }
}
.cid-reVlswI9NK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-reVlswI9NK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-reVlswI9NK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-reVlswI9NK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-reVlswI9NK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-reVlswI9NK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reVlswI9NK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-reVlswI9NK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-reVlswI9NK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-reVlswI9NK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reVlsxhk1U {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-reVlsxhk1U .image-block {
  margin: auto;
}
.cid-reVlsxhk1U figcaption {
  position: relative;
}
.cid-reVlsxhk1U figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-reVlsxhk1U .image-block {
    width: 100% !important;
  }
}
.cid-reVlsxHHZX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-reVlsxHHZX .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-reVlsxHHZX .pricing {
    padding: 1.5rem;
  }
}
.cid-reVlsxHHZX .plan-header,
.cid-reVlsxHHZX .plan-body {
  background-color: #fff;
}
.cid-reVlsxHHZX .plan-title {
  margin-top: 1.4rem;
}
.cid-reVlsxHHZX .price-figure {
  font-weight: 700;
  color: #767676;
}
@media (max-width: 550px) {
  .cid-reVlsxHHZX .price-figure {
    font-size: 4.25rem;
  }
}
.cid-reVlsxHHZX .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-reVlsxHHZX hr {
  margin: 2rem 0;
}
.cid-reVlsyjmSV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-reVlsyjmSV .title {
  margin-bottom: 2rem;
}
.cid-reVlsyjmSV .mbr-section-subtitle {
  color: #767676;
}
.cid-reVlsyjmSV a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-reVlsyjmSV a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-reVlsyjmSV .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-reVlsyjmSV .input-group-btn {
  display: block;
  text-align: center;
}
.cid-reVlsyQSE0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-reVlsyQSE0 .content {
    text-align: center;
  }
  .cid-reVlsyQSE0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-reVlsyQSE0 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-reVlsyQSE0 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-reVlsyQSE0 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-reVlsyQSE0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-reVlsyQSE0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-reVlsyQSE0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-reVlsyQSE0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-reVlsyQSE0 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-reVlsyQSE0 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-reVlsyQSE0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-reVlsyQSE0 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjHfgCi7XQ {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjHfgCi7XQ .mbr-section-subtitle {
  color: #767676;
}
.cid-rehaJSUTh9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rehaJSUTh9 h2 {
  text-align: left;
}
.cid-rehaJSUTh9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rehaJSUTh9 p {
  color: #767676;
  text-align: left;
}
.cid-rehaJSUTh9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rehaJSUTh9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rehaJSUTh9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rehaJSUTh9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rehaJSUTh9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rehaJSUTh9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rehaJSUTh9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rehaJSUTh9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rehaJSUTh9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-res3xOot4z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-res3xOot4z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-res3xOot4z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-res3xOot4z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-res3xOot4z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-res3xOot4z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-res3xOot4z .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-res3xOot4z .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-res3xOot4z .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-res3xOot4z .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rek06XCpAR {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rek06XCpAR .image-block {
  margin: auto;
}
.cid-rek06XCpAR figcaption {
  position: relative;
}
.cid-rek06XCpAR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rek06XCpAR .image-block {
    width: 100% !important;
  }
}
.cid-reh6i0TkPf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-reh6i0TkPf .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-reh6i0TkPf .pricing {
    padding: 1.5rem;
  }
}
.cid-reh6i0TkPf .plan-header,
.cid-reh6i0TkPf .plan-body {
  background-color: #fff;
}
.cid-reh6i0TkPf .plan-title {
  margin-top: 1.4rem;
}
.cid-reh6i0TkPf .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-reh6i0TkPf .price-figure {
    font-size: 4.25rem;
  }
}
.cid-reh6i0TkPf .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-reh6i0TkPf hr {
  margin: 2rem 0;
}
.cid-reh1akynIi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-reh1akynIi .title {
  margin-bottom: 2rem;
}
.cid-reh1akynIi .mbr-section-subtitle {
  color: #767676;
}
.cid-reh1akynIi a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-reh1akynIi a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-reh1akynIi .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-reh1akynIi .input-group-btn {
  display: block;
  text-align: center;
}
.cid-res69Uqsyd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-res69Uqsyd .content {
    text-align: center;
  }
  .cid-res69Uqsyd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-res69Uqsyd .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-res69Uqsyd .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-res69Uqsyd .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-res69Uqsyd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-res69Uqsyd .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-res69Uqsyd .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-res69Uqsyd .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-res69Uqsyd .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-res69Uqsyd .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-res69Uqsyd .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-res69Uqsyd .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sk21DzGQjc {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sk21DzGQjc .mbr-section-subtitle {
  color: #767676;
}
.cid-rg8mYYlLi3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rg8mYYlLi3 h2 {
  text-align: left;
}
.cid-rg8mYYlLi3 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rg8mYYlLi3 p {
  color: #767676;
  text-align: left;
}
.cid-rg8mYYlLi3 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rg8mYYlLi3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rg8mYYlLi3 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rg8mYYlLi3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rg8mYYlLi3 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rg8mYYlLi3 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rg8mYYlLi3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rg8mYYlLi3 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rg8mYYlLi3 .card-img span {
    font-size: 40px !important;
  }
}
.cid-rg8mYYTZhR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rg8mYYTZhR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rg8mYYTZhR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rg8mYYTZhR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rg8mYYTZhR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rg8mYYTZhR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rg8mYYTZhR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rg8mYYTZhR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rg8mYYTZhR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rg8mYYTZhR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rg8mYZn4P6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rg8mYZn4P6 .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rg8mYZn4P6 .pricing {
    padding: 1.5rem;
  }
}
.cid-rg8mYZn4P6 .plan-header,
.cid-rg8mYZn4P6 .plan-body {
  background-color: #fff;
}
.cid-rg8mYZn4P6 .plan-title {
  margin-top: 1.4rem;
}
.cid-rg8mYZn4P6 .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rg8mYZn4P6 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rg8mYZn4P6 .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rg8mYZn4P6 hr {
  margin: 2rem 0;
}
.cid-rg8mZ0opFZ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rg8mZ0opFZ .title {
  margin-bottom: 2rem;
}
.cid-rg8mZ0opFZ .mbr-section-subtitle {
  color: #767676;
}
.cid-rg8mZ0opFZ a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rg8mZ0opFZ a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rg8mZ0opFZ .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rg8mZ0opFZ .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rg8mZ0V3TP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rg8mZ0V3TP .content {
    text-align: center;
  }
  .cid-rg8mZ0V3TP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rg8mZ0V3TP .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rg8mZ0V3TP .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rg8mZ0V3TP .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rg8mZ0V3TP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rg8mZ0V3TP .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rg8mZ0V3TP .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rg8mZ0V3TP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rg8mZ0V3TP .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rg8mZ0V3TP .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rg8mZ0V3TP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rg8mZ0V3TP .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYQoyjkki {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYQoyjkki .mbr-section-subtitle {
  color: #767676;
}
.cid-s1SRT9FRpN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-s1SRT9FRpN h2 {
  text-align: left;
}
.cid-s1SRT9FRpN h4 {
  text-align: left;
  font-weight: 500;
}
.cid-s1SRT9FRpN p {
  color: #767676;
  text-align: left;
}
.cid-s1SRT9FRpN .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-s1SRT9FRpN .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-s1SRT9FRpN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-s1SRT9FRpN .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-s1SRT9FRpN .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-s1SRT9FRpN .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-s1SRT9FRpN .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-s1SRT9FRpN .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-s1SRT9FRpN .card-img span {
    font-size: 40px !important;
  }
}
.cid-s1SRTaeDYe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s1SRTaeDYe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s1SRTaeDYe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s1SRTaeDYe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s1SRTaeDYe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s1SRTaeDYe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-s1SRTaeDYe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s1SRTaeDYe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s1SRTaeDYe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s1SRTaeDYe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-s1SRTaCD0R {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-s1SRTaCD0R .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-s1SRTaCD0R .pricing {
    padding: 1.5rem;
  }
}
.cid-s1SRTaCD0R .plan-header,
.cid-s1SRTaCD0R .plan-body {
  background-color: #fff;
}
.cid-s1SRTaCD0R .plan-title {
  margin-top: 1.4rem;
}
.cid-s1SRTaCD0R .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-s1SRTaCD0R .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s1SRTaCD0R .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-s1SRTaCD0R hr {
  margin: 2rem 0;
}
.cid-s1SRTctq92 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-s1SRTctq92 .title {
  margin-bottom: 2rem;
}
.cid-s1SRTctq92 .mbr-section-subtitle {
  color: #767676;
}
.cid-s1SRTctq92 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-s1SRTctq92 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-s1SRTctq92 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-s1SRTctq92 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-s1SRTd0vhH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-s1SRTd0vhH .content {
    text-align: center;
  }
  .cid-s1SRTd0vhH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s1SRTd0vhH .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-s1SRTd0vhH .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s1SRTd0vhH .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-s1SRTd0vhH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-s1SRTd0vhH .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-s1SRTd0vhH .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-s1SRTd0vhH .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-s1SRTd0vhH .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s1SRTd0vhH .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-s1SRTd0vhH .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s1SRTd0vhH .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYOQotR6w {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYOQotR6w .mbr-section-subtitle {
  color: #767676;
}
.cid-rex1G4Z3P2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rex1G4Z3P2 h2 {
  text-align: left;
}
.cid-rex1G4Z3P2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rex1G4Z3P2 p {
  color: #767676;
  text-align: left;
}
.cid-rex1G4Z3P2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rex1G4Z3P2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rex1G4Z3P2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rex1G4Z3P2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rex1G4Z3P2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rex1G4Z3P2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rex1G4Z3P2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rex1G4Z3P2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rex1G4Z3P2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-rex1G5yOa0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rex1G5yOa0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rex1G5yOa0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rex1G5yOa0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rex1G5yOa0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rex1G5yOa0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rex1G5yOa0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rex1G5yOa0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rex1G5yOa0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rex1G5yOa0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rex1G62Smq {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rex1G62Smq .image-block {
  margin: auto;
}
.cid-rex1G62Smq figcaption {
  position: relative;
}
.cid-rex1G62Smq figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rex1G62Smq .image-block {
    width: 100% !important;
  }
}
.cid-rex1G6pMZQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rex1G6pMZQ .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rex1G6pMZQ .pricing {
    padding: 1.5rem;
  }
}
.cid-rex1G6pMZQ .plan-header,
.cid-rex1G6pMZQ .plan-body {
  background-color: #fff;
}
.cid-rex1G6pMZQ .plan-title {
  margin-top: 1.4rem;
}
.cid-rex1G6pMZQ .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rex1G6pMZQ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rex1G6pMZQ .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rex1G6pMZQ hr {
  margin: 2rem 0;
}
.cid-rex1G74n6O {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rex1G74n6O .title {
  margin-bottom: 2rem;
}
.cid-rex1G74n6O .mbr-section-subtitle {
  color: #767676;
}
.cid-rex1G74n6O a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rex1G74n6O a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rex1G74n6O .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rex1G74n6O .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rex1G7AsAM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rex1G7AsAM .content {
    text-align: center;
  }
  .cid-rex1G7AsAM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rex1G7AsAM .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rex1G7AsAM .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rex1G7AsAM .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rex1G7AsAM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rex1G7AsAM .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rex1G7AsAM .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rex1G7AsAM .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rex1G7AsAM .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rex1G7AsAM .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rex1G7AsAM .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rex1G7AsAM .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYOz3EW67 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYOz3EW67 .mbr-section-subtitle {
  color: #767676;
}
.cid-rewz7Yp5P7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rewz7Yp5P7 h2 {
  text-align: left;
}
.cid-rewz7Yp5P7 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rewz7Yp5P7 p {
  color: #767676;
  text-align: left;
}
.cid-rewz7Yp5P7 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rewz7Yp5P7 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rewz7Yp5P7 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rewz7Yp5P7 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rewz7Yp5P7 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rewz7Yp5P7 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rewz7Yp5P7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rewz7Yp5P7 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rewz7Yp5P7 .card-img span {
    font-size: 40px !important;
  }
}
.cid-rewHqWugRF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rewHqWugRF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rewHqWugRF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rewHqWugRF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rewHqWugRF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rewHqWugRF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rewHqWugRF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rewHqWugRF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rewHqWugRF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rewHqWugRF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rewz7ZTNan {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rewz7ZTNan .image-block {
  margin: auto;
}
.cid-rewz7ZTNan figcaption {
  position: relative;
}
.cid-rewz7ZTNan figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rewz7ZTNan .image-block {
    width: 100% !important;
  }
}
.cid-rewz80sAmZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rewz80sAmZ .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rewz80sAmZ .pricing {
    padding: 1.5rem;
  }
}
.cid-rewz80sAmZ .plan-header,
.cid-rewz80sAmZ .plan-body {
  background-color: #fff;
}
.cid-rewz80sAmZ .plan-title {
  margin-top: 1.4rem;
}
.cid-rewz80sAmZ .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rewz80sAmZ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rewz80sAmZ .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rewz80sAmZ hr {
  margin: 2rem 0;
}
.cid-rewz81poyM {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rewz81poyM .title {
  margin-bottom: 2rem;
}
.cid-rewz81poyM .mbr-section-subtitle {
  color: #767676;
}
.cid-rewz81poyM a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rewz81poyM a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rewz81poyM .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rewz81poyM .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rewz82KtTK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rewz82KtTK .content {
    text-align: center;
  }
  .cid-rewz82KtTK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rewz82KtTK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rewz82KtTK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rewz82KtTK .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rewz82KtTK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rewz82KtTK .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rewz82KtTK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rewz82KtTK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rewz82KtTK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rewz82KtTK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rewz82KtTK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rewz82KtTK .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sj8yObVerp {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sj8yObVerp .mbr-section-subtitle {
  color: #767676;
}
.cid-rhcjpwldlH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rhcjpwldlH h2 {
  text-align: left;
}
.cid-rhcjpwldlH h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rhcjpwldlH p {
  color: #767676;
  text-align: left;
}
.cid-rhcjpwldlH .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rhcjpwldlH .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rhcjpwldlH .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rhcjpwldlH .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rhcjpwldlH .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rhcjpwldlH .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rhcjpwldlH .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rhcjpwldlH .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rhcjpwldlH .card-img span {
    font-size: 40px !important;
  }
}
.cid-rhcjpwldlH P {
  color: #465052;
}
.cid-rhcjpx1kS9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rhcjpx1kS9 .card-img {
  background-color: #fff;
}
.cid-rhcjpx1kS9 .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rhcjpx1kS9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rhcjpx1kS9 p {
  text-align: left;
}
.cid-rhcjpx1kS9 .mbr-text {
  color: #767676;
}
.cid-rhcjpx1kS9 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rhcjpx1kS9 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rhcjpx1kS9 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rhcjpxNzpT {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rhcjpxNzpT .image-block {
  margin: auto;
}
.cid-rhcjpxNzpT figcaption {
  position: relative;
}
.cid-rhcjpxNzpT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rhcjpxNzpT .image-block {
    width: 100% !important;
  }
}
.cid-rhcjpxNzpT DIV {
  color: #ffffff;
}
.cid-rhcjpy9o82 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-rhcjpy9o82 .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-rhcjpy9o82 .pricing {
    padding: 1.5rem;
  }
}
.cid-rhcjpy9o82 .plan-header,
.cid-rhcjpy9o82 .plan-body {
  background-color: #fff;
}
.cid-rhcjpy9o82 .plan-title {
  margin-top: 1.4rem;
}
.cid-rhcjpy9o82 .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-rhcjpy9o82 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rhcjpy9o82 .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-rhcjpy9o82 hr {
  margin: 2rem 0;
}
.cid-rhcjpyLF3q {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rhcjpyLF3q .title {
  margin-bottom: 2rem;
}
.cid-rhcjpyLF3q .mbr-section-subtitle {
  color: #767676;
}
.cid-rhcjpyLF3q a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rhcjpyLF3q a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rhcjpyLF3q .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rhcjpyLF3q .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rhcjpzjTvF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rhcjpzjTvF .content {
    text-align: center;
  }
  .cid-rhcjpzjTvF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rhcjpzjTvF .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rhcjpzjTvF .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rhcjpzjTvF .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rhcjpzjTvF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rhcjpzjTvF .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rhcjpzjTvF .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rhcjpzjTvF .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rhcjpzjTvF .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rhcjpzjTvF .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rhcjpzjTvF .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rhcjpzjTvF .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sj8zigNxzA {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sj8zigNxzA .mbr-section-subtitle {
  color: #767676;
}
.cid-relxFeOTlX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-relxFeOTlX h2 {
  text-align: left;
}
.cid-relxFeOTlX h4 {
  text-align: left;
  font-weight: 500;
}
.cid-relxFeOTlX p {
  color: #767676;
  text-align: left;
}
.cid-relxFeOTlX .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-relxFeOTlX .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-relxFeOTlX .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-relxFeOTlX .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-relxFeOTlX .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-relxFeOTlX .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-relxFeOTlX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-relxFeOTlX .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-relxFeOTlX .card-img span {
    font-size: 40px !important;
  }
}
.cid-relxFeOTlX P {
  color: #465052;
}
.cid-relyAqbSAI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-relyAqbSAI .card-img {
  background-color: #fff;
}
.cid-relyAqbSAI .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-relyAqbSAI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-relyAqbSAI p {
  text-align: left;
}
.cid-relyAqbSAI .mbr-text {
  color: #767676;
}
.cid-relyAqbSAI .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-relyAqbSAI .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-relyAqbSAI .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-relxFfx9Ug {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-relxFfx9Ug .image-block {
  margin: auto;
}
.cid-relxFfx9Ug figcaption {
  position: relative;
}
.cid-relxFfx9Ug figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-relxFfx9Ug .image-block {
    width: 100% !important;
  }
}
.cid-relxFfx9Ug DIV {
  color: #ffffff;
}
.cid-relxFfT9rr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-relxFfT9rr .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-relxFfT9rr .pricing {
    padding: 1.5rem;
  }
}
.cid-relxFfT9rr .plan-header,
.cid-relxFfT9rr .plan-body {
  background-color: #fff;
}
.cid-relxFfT9rr .plan-title {
  margin-top: 1.4rem;
}
.cid-relxFfT9rr .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-relxFfT9rr .price-figure {
    font-size: 4.25rem;
  }
}
.cid-relxFfT9rr .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-relxFfT9rr hr {
  margin: 2rem 0;
}
.cid-relxFgvxrr {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-relxFgvxrr .title {
  margin-bottom: 2rem;
}
.cid-relxFgvxrr .mbr-section-subtitle {
  color: #767676;
}
.cid-relxFgvxrr a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-relxFgvxrr a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-relxFgvxrr .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-relxFgvxrr .input-group-btn {
  display: block;
  text-align: center;
}
.cid-relxFh2t1E {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-relxFh2t1E .content {
    text-align: center;
  }
  .cid-relxFh2t1E .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-relxFh2t1E .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-relxFh2t1E .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-relxFh2t1E .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-relxFh2t1E .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-relxFh2t1E .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-relxFh2t1E .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-relxFh2t1E .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-relxFh2t1E .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-relxFh2t1E .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-relxFh2t1E .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-relxFh2t1E .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sj8zfNxoL9 {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sj8zfNxoL9 .mbr-section-subtitle {
  color: #767676;
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-simR7AcoM8 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-simR7AcoM8 .mbr-section-subtitle {
  color: #767676;
}
.cid-reC1PrD4tN {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-reC1PrD4tN h2 {
  text-align: left;
}
.cid-reC1PrD4tN h4 {
  text-align: left;
  font-weight: 500;
}
.cid-reC1PrD4tN p {
  color: #767676;
  text-align: left;
}
.cid-reC1PrD4tN .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-reC1PrD4tN .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-reC1PrD4tN .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-reC1PrD4tN .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-reC1PrD4tN .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-reC1PrD4tN .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-reC1PrD4tN .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-reC1PrD4tN .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-reC1PrD4tN .card-img span {
    font-size: 40px !important;
  }
}
.cid-reC1Psrl4O {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-reC1Psrl4O .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-reC1Psrl4O .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-reC1Psrl4O .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-reC1Psrl4O .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-reC1Psrl4O .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reC1Psrl4O .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-reC1Psrl4O .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-reC1Psrl4O .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-reC1Psrl4O .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-reC1Pt3Ryt {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-reC1Pt3Ryt .image-block {
  margin: auto;
}
.cid-reC1Pt3Ryt figcaption {
  position: relative;
}
.cid-reC1Pt3Ryt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-reC1Pt3Ryt .image-block {
    width: 100% !important;
  }
}
.cid-reC1PtqCoQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-reC1PtqCoQ .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-reC1PtqCoQ .pricing {
    padding: 1.5rem;
  }
}
.cid-reC1PtqCoQ .plan-header,
.cid-reC1PtqCoQ .plan-body {
  background-color: #fff;
}
.cid-reC1PtqCoQ .plan-title {
  margin-top: 1.4rem;
}
.cid-reC1PtqCoQ .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-reC1PtqCoQ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-reC1PtqCoQ .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-reC1PtqCoQ hr {
  margin: 2rem 0;
}
.cid-reC1Pu0UVb {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-reC1Pu0UVb .title {
  margin-bottom: 2rem;
}
.cid-reC1Pu0UVb .mbr-section-subtitle {
  color: #767676;
}
.cid-reC1Pu0UVb a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-reC1Pu0UVb a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-reC1Pu0UVb .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-reC1Pu0UVb .input-group-btn {
  display: block;
  text-align: center;
}
.cid-reC1PuBfWO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-reC1PuBfWO .content {
    text-align: center;
  }
  .cid-reC1PuBfWO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-reC1PuBfWO .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-reC1PuBfWO .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-reC1PuBfWO .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-reC1PuBfWO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-reC1PuBfWO .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-reC1PuBfWO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-reC1PuBfWO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-reC1PuBfWO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-reC1PuBfWO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-reC1PuBfWO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-reC1PuBfWO .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sklkU41b1L {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sklkU41b1L .mbr-section-subtitle {
  color: #767676;
}
.cid-sklkU4nHRG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sklkU4nHRG h2 {
  text-align: left;
}
.cid-sklkU4nHRG h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sklkU4nHRG p {
  color: #767676;
  text-align: left;
}
.cid-sklkU4nHRG .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sklkU4nHRG .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sklkU4nHRG .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sklkU4nHRG .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sklkU4nHRG .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sklkU4nHRG .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sklkU4nHRG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sklkU4nHRG .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sklkU4nHRG .card-img span {
    font-size: 40px !important;
  }
}
.cid-sklkU5LGzf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sklkU5LGzf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sklkU5LGzf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sklkU5LGzf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sklkU5LGzf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sklkU5LGzf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sklkU5LGzf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sklkU5LGzf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sklkU5LGzf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sklkU5LGzf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sklkU6fQeU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-sklkU6fQeU .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-sklkU6fQeU .pricing {
    padding: 1.5rem;
  }
}
.cid-sklkU6fQeU .plan-header,
.cid-sklkU6fQeU .plan-body {
  background-color: #fff;
}
.cid-sklkU6fQeU .plan-title {
  margin-top: 1.4rem;
}
.cid-sklkU6fQeU .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-sklkU6fQeU .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sklkU6fQeU .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-sklkU6fQeU hr {
  margin: 2rem 0;
}
.cid-sklkU6R5Fm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-sklkU6R5Fm .title {
  margin-bottom: 2rem;
}
.cid-sklkU6R5Fm .mbr-section-subtitle {
  color: #767676;
}
.cid-sklkU6R5Fm a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sklkU6R5Fm a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sklkU6R5Fm .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sklkU6R5Fm .input-group-btn {
  display: block;
  text-align: center;
}
.cid-sklkU7sDEO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-sklkU7sDEO .content {
    text-align: center;
  }
  .cid-sklkU7sDEO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sklkU7sDEO .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sklkU7sDEO .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sklkU7sDEO .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sklkU7sDEO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sklkU7sDEO .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sklkU7sDEO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sklkU7sDEO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sklkU7sDEO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sklkU7sDEO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sklkU7sDEO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sklkU7sDEO .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-skwG8kGRTF {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-skwG8kGRTF .mbr-section-subtitle {
  color: #767676;
}
.cid-skwG8lpltw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-skwG8lpltw .card-img {
  background-color: #fff;
}
.cid-skwG8lpltw .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-skwG8lpltw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-skwG8lpltw p {
  text-align: left;
}
.cid-skwG8lpltw .mbr-text {
  color: #767676;
}
.cid-skwG8lpltw .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-skwG8lpltw .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-skwG8lpltw .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-slzvOjulSq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-slzvOjulSq .card-img {
  background-color: #fff;
}
.cid-slzvOjulSq .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-slzvOjulSq h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-slzvOjulSq p {
  text-align: left;
}
.cid-slzvOjulSq .mbr-text {
  color: #767676;
}
.cid-slzvOjulSq .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-slzvOjulSq .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-slzvOjulSq .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-skx5LROe7U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-skx5LROe7U h2 {
  text-align: left;
}
.cid-skx5LROe7U h4 {
  text-align: left;
  font-weight: 500;
}
.cid-skx5LROe7U p {
  color: #767676;
  text-align: left;
}
.cid-skx5LROe7U .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-skx5LROe7U .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-skx5LROe7U .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-skx5LROe7U .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-skx5LROe7U .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-skx5LROe7U .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-skx5LROe7U .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-skx5LROe7U .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-skx5LROe7U .card-img span {
    font-size: 40px !important;
  }
}
.cid-skwG8nbr4H {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-skwG8nbr4H .title {
  margin-bottom: 2rem;
}
.cid-skwG8nbr4H .mbr-section-subtitle {
  color: #767676;
}
.cid-skwG8nbr4H a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-skwG8nbr4H a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-skwG8nbr4H .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-skwG8nbr4H .input-group-btn {
  display: block;
  text-align: center;
}
.cid-skwG8nKSJ3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-skwG8nKSJ3 .content {
    text-align: center;
  }
  .cid-skwG8nKSJ3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-skwG8nKSJ3 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-skwG8nKSJ3 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-skwG8nKSJ3 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-skwG8nKSJ3 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-skwG8nKSJ3 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-skwG8nKSJ3 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-skwG8nKSJ3 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-skwG8nKSJ3 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-skwG8nKSJ3 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-skwG8nKSJ3 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-skwG8nKSJ3 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sCKDOL4xpJ {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sCKDOL4xpJ .mbr-section-subtitle {
  color: #767676;
}
.cid-sCKDOLmoYj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sCKDOLmoYj h2 {
  text-align: left;
}
.cid-sCKDOLmoYj h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sCKDOLmoYj p {
  color: #767676;
  text-align: left;
}
.cid-sCKDOLmoYj .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sCKDOLmoYj .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-sCKDOLmoYj .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sCKDOLmoYj .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sCKDOLmoYj .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-sCKDOLmoYj .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-sCKDOLmoYj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sCKDOLmoYj .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-sCKDOLmoYj .card-img span {
    font-size: 40px !important;
  }
}
.cid-sCKDOLTVNg {
  background: #149dcc;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #149dcc, #ffffff);
}
.cid-sCKDOLTVNg .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-sCKDOLTVNg .video-block {
    width: 100% !important;
  }
}
.cid-sCKLslIBkQ {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #149dcc, #ffffff);
}
.cid-sCKLslIBkQ .image-block {
  margin: auto;
}
.cid-sCKLslIBkQ figcaption {
  position: relative;
}
.cid-sCKLslIBkQ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sCKLslIBkQ .image-block {
    width: 100% !important;
  }
}
.cid-sCKDONrcGa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-sCKDONrcGa .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-sCKDONrcGa .pricing {
    padding: 1.5rem;
  }
}
.cid-sCKDONrcGa .plan-header,
.cid-sCKDONrcGa .plan-body {
  background-color: #fff;
}
.cid-sCKDONrcGa .plan-title {
  margin-top: 1.4rem;
}
.cid-sCKDONrcGa .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-sCKDONrcGa .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sCKDONrcGa .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-sCKDONrcGa hr {
  margin: 2rem 0;
}
.cid-sCKDOO6U6T {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-sCKDOO6U6T .title {
  margin-bottom: 2rem;
}
.cid-sCKDOO6U6T .mbr-section-subtitle {
  color: #767676;
}
.cid-sCKDOO6U6T a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sCKDOO6U6T a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sCKDOO6U6T .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sCKDOO6U6T .input-group-btn {
  display: block;
  text-align: center;
}
.cid-sCKDOOCRng {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-sCKDOOCRng .content {
    text-align: center;
  }
  .cid-sCKDOOCRng .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sCKDOOCRng .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sCKDOOCRng .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sCKDOOCRng .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sCKDOOCRng .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sCKDOOCRng .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sCKDOOCRng .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sCKDOOCRng .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sCKDOOCRng .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCKDOOCRng .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sCKDOOCRng .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCKDOOCRng .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sCKL5BvB8D {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-sCKL5BvB8D .images-container.container-fluid {
  padding: 0;
}
.cid-sCKL5BvB8D .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sCKL5BvB8D .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sCKL5BvB8D .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sCKL5BvB8D .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sCKL5BvB8D .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sCKL5BvB8D .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sCKL5BvB8D .img-item {
    width: 100% !important;
  }
  .cid-sCKL5BvB8D .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tTGudixxrz {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tTGudixxrz .mbr-section-subtitle {
  color: #767676;
}
.cid-tTGudiGcMd {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tTGudiGcMd h2 {
  text-align: left;
}
.cid-tTGudiGcMd h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tTGudiGcMd p {
  color: #767676;
  text-align: left;
}
.cid-tTGudiGcMd .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tTGudiGcMd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tTGudiGcMd .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tTGudiGcMd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tTGudiGcMd .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tTGudiGcMd .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tTGudiGcMd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tTGudiGcMd .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-tTGudiGcMd .card-img span {
    font-size: 40px !important;
  }
}
.cid-tTGydO6jMX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/aero-polos-for-2015-700px-700x532.jpg");
}
.cid-tTGydO6jMX .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tTGydO6jMX .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tTGydO6jMX .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tTWXrioUCE {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tTWXrioUCE img,
.cid-tTWXrioUCE .item-img {
  width: 100%;
}
.cid-tTWXrioUCE .item:focus,
.cid-tTWXrioUCE span:focus {
  outline: none;
}
.cid-tTWXrioUCE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tTWXrioUCE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tTWXrioUCE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTWXrioUCE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tTWXrioUCE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tTWXrioUCE .mbr-section-title {
  color: #232323;
}
.cid-tTWXrioUCE .mbr-text,
.cid-tTWXrioUCE .mbr-section-btn {
  text-align: left;
}
.cid-tTWXrioUCE .item-title {
  text-align: left;
}
.cid-tTWXrioUCE .item-subtitle {
  text-align: center;
}
.cid-tTXdQNMGtX {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tTXdQNMGtX img,
.cid-tTXdQNMGtX .item-img {
  width: 100%;
}
.cid-tTXdQNMGtX .item:focus,
.cid-tTXdQNMGtX span:focus {
  outline: none;
}
.cid-tTXdQNMGtX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tTXdQNMGtX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tTXdQNMGtX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTXdQNMGtX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tTXdQNMGtX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tTXdQNMGtX .mbr-section-title {
  color: #232323;
}
.cid-tTXdQNMGtX .mbr-text,
.cid-tTXdQNMGtX .mbr-section-btn {
  text-align: left;
}
.cid-tTXdQNMGtX .item-title {
  text-align: left;
}
.cid-tTXdQNMGtX .item-subtitle {
  text-align: center;
}
.cid-tTGudjqj7m {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tTGudjqj7m .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-tTGudjqj7m .pricing {
    padding: 1.5rem;
  }
}
.cid-tTGudjqj7m .plan-header,
.cid-tTGudjqj7m .plan-body {
  background-color: #fff;
}
.cid-tTGudjqj7m .plan-title {
  margin-top: 1.4rem;
}
.cid-tTGudjqj7m .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-tTGudjqj7m .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tTGudjqj7m .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-tTGudjqj7m hr {
  margin: 2rem 0;
}
.cid-tTGudjIYOl {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-tTGudjIYOl .title {
  margin-bottom: 2rem;
}
.cid-tTGudjIYOl .mbr-section-subtitle {
  color: #767676;
}
.cid-tTGudjIYOl a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tTGudjIYOl a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tTGudjIYOl .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tTGudjIYOl .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tTGudjWoia {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-tTGudjWoia .content {
    text-align: center;
  }
  .cid-tTGudjWoia .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tTGudjWoia .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tTGudjWoia .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tTGudjWoia .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tTGudjWoia .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tTGudjWoia .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tTGudjWoia .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tTGudjWoia .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tTGudjWoia .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tTGudjWoia .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tTGudjWoia .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tTGudjWoia .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-silrfOdUuF {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-silrfOdUuF h2 {
  text-align: left;
}
.cid-silrfOdUuF h4 {
  text-align: left;
  font-weight: 500;
}
.cid-silrfOdUuF p {
  color: #767676;
  text-align: left;
}
.cid-silrfOdUuF .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-silrfOdUuF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-silrfOdUuF .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-silrfOdUuF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-silrfOdUuF .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-silrfOdUuF .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-silrfOdUuF .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-silrfOdUuF .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-silrfOdUuF .card-img span {
    font-size: 40px !important;
  }
}
.cid-silrfOdUuF P {
  color: #465052;
}
.cid-silvMjY4Ip {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-silvMjY4Ip .image-block {
  margin: auto;
}
.cid-silvMjY4Ip figcaption {
  position: relative;
}
.cid-silvMjY4Ip figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-silvMjY4Ip .image-block {
    width: 100% !important;
  }
}
.cid-silrfOMkuZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-silrfOMkuZ .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-silrfOMkuZ .pricing {
    padding: 1.5rem;
  }
}
.cid-silrfOMkuZ .plan-header,
.cid-silrfOMkuZ .plan-body {
  background-color: #fff;
}
.cid-silrfOMkuZ .plan-title {
  margin-top: 1.4rem;
}
.cid-silrfOMkuZ .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-silrfOMkuZ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-silrfOMkuZ .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-silrfOMkuZ hr {
  margin: 2rem 0;
}
.cid-silrfPfb9Q {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-silrfPfb9Q .title {
  margin-bottom: 2rem;
}
.cid-silrfPfb9Q .mbr-section-subtitle {
  color: #767676;
}
.cid-silrfPfb9Q a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-silrfPfb9Q a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-silrfPfb9Q .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-silrfPfb9Q .input-group-btn {
  display: block;
  text-align: center;
}
.cid-silrfPJaVv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-silrfPJaVv .content {
    text-align: center;
  }
  .cid-silrfPJaVv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-silrfPJaVv .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-silrfPJaVv .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-silrfPJaVv .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-silrfPJaVv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-silrfPJaVv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-silrfPJaVv .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-silrfPJaVv .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-silrfPJaVv .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-silrfPJaVv .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-silrfPJaVv .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-silrfPJaVv .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-silIpn8L2j {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-silIpn8L2j .mbr-section-subtitle {
  color: #767676;
}
.cid-rhi97qGagv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rhi97qGagv .card-img {
  background-color: #fff;
}
.cid-rhi97qGagv .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rhi97qGagv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rhi97qGagv p {
  text-align: left;
}
.cid-rhi97qGagv .mbr-text {
  color: #767676;
}
.cid-rhi97qGagv .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rhi97qGagv .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rhi97qGagv .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rE68DPFdVg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rE68DPFdVg .card-img {
  background-color: #fff;
}
.cid-rE68DPFdVg .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rE68DPFdVg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rE68DPFdVg p {
  text-align: left;
}
.cid-rE68DPFdVg .mbr-text {
  color: #767676;
}
.cid-rE68DPFdVg .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rE68DPFdVg .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rE68DPFdVg .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uIqkcgb2Ne {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uIqkcgb2Ne .card-img {
  background-color: #fff;
}
.cid-uIqkcgb2Ne .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uIqkcgb2Ne h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uIqkcgb2Ne p {
  text-align: left;
}
.cid-uIqkcgb2Ne .mbr-text {
  color: #767676;
}
.cid-uIqkcgb2Ne .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uIqkcgb2Ne .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uIqkcgb2Ne .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rhi97siB0z {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rhi97siB0z .title {
  margin-bottom: 2rem;
}
.cid-rhi97siB0z .mbr-section-subtitle {
  color: #767676;
}
.cid-rhi97siB0z a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rhi97siB0z a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rhi97siB0z .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rhi97siB0z .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rhi97sTVPX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rhi97sTVPX .content {
    text-align: center;
  }
  .cid-rhi97sTVPX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rhi97sTVPX .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rhi97sTVPX .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rhi97sTVPX .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rhi97sTVPX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rhi97sTVPX .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rhi97sTVPX .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rhi97sTVPX .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rhi97sTVPX .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rhi97sTVPX .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rhi97sTVPX .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rhi97sTVPX .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uIqkbyAjWO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uIqkbyAjWO .card-img {
  background-color: #fff;
}
.cid-uIqkbyAjWO .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uIqkbyAjWO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uIqkbyAjWO p {
  text-align: left;
}
.cid-uIqkbyAjWO .mbr-text {
  color: #767676;
}
.cid-uIqkbyAjWO .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uIqkbyAjWO .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uIqkbyAjWO .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-silHQ3znEv {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-silHQ3znEv .mbr-section-subtitle {
  color: #767676;
}
.cid-rgptvxLKf6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rgptvxLKf6 .card-img {
  background-color: #fff;
}
.cid-rgptvxLKf6 .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rgptvxLKf6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rgptvxLKf6 p {
  text-align: left;
}
.cid-rgptvxLKf6 .mbr-text {
  color: #767676;
}
.cid-rgptvxLKf6 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rgptvxLKf6 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rgptvxLKf6 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rgYDKHKsCH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rgYDKHKsCH .card-img {
  background-color: #fff;
}
.cid-rgYDKHKsCH .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rgYDKHKsCH h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rgYDKHKsCH p {
  text-align: left;
}
.cid-rgYDKHKsCH .mbr-text {
  color: #767676;
}
.cid-rgYDKHKsCH .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rgYDKHKsCH .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rgYDKHKsCH .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rgYDKHKsCH .card-title {
  color: #232323;
}
.cid-rgprM3FqSt {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-rgprM3FqSt .title {
  margin-bottom: 2rem;
}
.cid-rgprM3FqSt .mbr-section-subtitle {
  color: #767676;
}
.cid-rgprM3FqSt a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rgprM3FqSt a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rgprM3FqSt .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rgprM3FqSt .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rgprM4aKm0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rgprM4aKm0 .content {
    text-align: center;
  }
  .cid-rgprM4aKm0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rgprM4aKm0 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rgprM4aKm0 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rgprM4aKm0 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rgprM4aKm0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rgprM4aKm0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rgprM4aKm0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rgprM4aKm0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rgprM4aKm0 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rgprM4aKm0 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rgprM4aKm0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rgprM4aKm0 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uzmRMImaI0 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uzmRMImaI0 .card-img {
  background-color: #fff;
}
.cid-uzmRMImaI0 .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uzmRMImaI0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uzmRMImaI0 p {
  text-align: left;
}
.cid-uzmRMImaI0 .mbr-text {
  color: #767676;
}
.cid-uzmRMImaI0 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uzmRMImaI0 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uzmRMImaI0 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uBqw5ptkDz {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uBqw5ptkDz .card-img {
  background-color: #fff;
}
.cid-uBqw5ptkDz .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uBqw5ptkDz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uBqw5ptkDz p {
  text-align: left;
}
.cid-uBqw5ptkDz .mbr-text {
  color: #767676;
}
.cid-uBqw5ptkDz .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uBqw5ptkDz .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uBqw5ptkDz .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uGlMgH0MFT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uGlMgH0MFT .card-img {
  background-color: #fff;
}
.cid-uGlMgH0MFT .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uGlMgH0MFT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uGlMgH0MFT p {
  text-align: left;
}
.cid-uGlMgH0MFT .mbr-text {
  color: #767676;
}
.cid-uGlMgH0MFT .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uGlMgH0MFT .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uGlMgH0MFT .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uBrFUXlPOD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-uBrFUXlPOD .title {
  margin-bottom: 2rem;
}
.cid-uBrFUXlPOD .mbr-section-subtitle {
  color: #767676;
}
.cid-uBrFUXlPOD a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uBrFUXlPOD a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uBrFUXlPOD .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uBrFUXlPOD .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uzDDB9cqLw {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uzDDB9cqLw .card-img {
  background-color: #fff;
}
.cid-uzDDB9cqLw .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uzDDB9cqLw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uzDDB9cqLw p {
  text-align: left;
}
.cid-uzDDB9cqLw .mbr-text {
  color: #767676;
}
.cid-uzDDB9cqLw .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uzDDB9cqLw .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uzDDB9cqLw .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uDTw80IgXx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-uDTw80IgXx .title {
  margin-bottom: 2rem;
}
.cid-uDTw80IgXx .mbr-section-subtitle {
  color: #767676;
}
.cid-uDTw80IgXx a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uDTw80IgXx a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uDTw80IgXx .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uDTw80IgXx .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uzsiVclKUk {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uzsiVclKUk .card-img {
  background-color: #fff;
}
.cid-uzsiVclKUk .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uzsiVclKUk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uzsiVclKUk p {
  text-align: left;
}
.cid-uzsiVclKUk .mbr-text {
  color: #767676;
}
.cid-uzsiVclKUk .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uzsiVclKUk .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uzsiVclKUk .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uC67wGLiAo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uC67wGLiAo .mbr-section-subtitle {
  color: #767676;
}
.cid-uC67wGLiAo .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uC67wGLiAo .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-uC67wGLiAo .team-item .item-image img {
  width: 100%;
}
.cid-uC67wGLiAo .team-item .item-name p {
  margin-bottom: 0;
}
.cid-uC67wGLiAo .team-item .item-role p {
  margin-bottom: 0;
}
.cid-uC67wGLiAo .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-uC67wGLiAo .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-uC67wGLiAo .team-item .item-caption {
  background: #efefef;
}
.cid-uBOxv8Lso6 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-uBOxv8Lso6 .title {
  margin-bottom: 2rem;
}
.cid-uBOxv8Lso6 .mbr-section-subtitle {
  color: #767676;
}
.cid-uBOxv8Lso6 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uBOxv8Lso6 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uBOxv8Lso6 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uBOxv8Lso6 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uzHtKYzkyo {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uzHtKYzkyo .card-img {
  background-color: #fff;
}
.cid-uzHtKYzkyo .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uzHtKYzkyo h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uzHtKYzkyo p {
  text-align: left;
}
.cid-uzHtKYzkyo .mbr-text {
  color: #767676;
}
.cid-uzHtKYzkyo .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uzHtKYzkyo .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uzHtKYzkyo .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uCbol77Yic {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uCbol77Yic .mbr-section-subtitle {
  color: #767676;
}
.cid-uCbol77Yic .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uCbol77Yic .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-uCbol77Yic .team-item .item-image img {
  width: 100%;
}
.cid-uCbol77Yic .team-item .item-name p {
  margin-bottom: 0;
}
.cid-uCbol77Yic .team-item .item-role p {
  margin-bottom: 0;
}
.cid-uCbol77Yic .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-uCbol77Yic .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-uCbol77Yic .team-item .item-caption {
  background: #efefef;
}
.cid-uCbosr87bE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-uCbosr87bE .title {
  margin-bottom: 2rem;
}
.cid-uCbosr87bE .mbr-section-subtitle {
  color: #767676;
}
.cid-uCbosr87bE a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uCbosr87bE a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uCbosr87bE .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uCbosr87bE .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uzJR2jiVPv {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uzJR2jiVPv .card-img {
  background-color: #fff;
}
.cid-uzJR2jiVPv .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uzJR2jiVPv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uzJR2jiVPv p {
  text-align: left;
}
.cid-uzJR2jiVPv .mbr-text {
  color: #767676;
}
.cid-uzJR2jiVPv .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uzJR2jiVPv .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uzJR2jiVPv .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uCc6AgR4cW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/17879810-10155328121818856-7203803360791746004-o.jpg");
}
.cid-uCc6AgR4cW .mbr-section-subtitle {
  color: #232323;
}
.cid-uCc6AgR4cW .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uCc6AgR4cW .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-uCc6AgR4cW .team-item .item-image img {
  width: 100%;
}
.cid-uCc6AgR4cW .team-item .item-name p {
  margin-bottom: 0;
}
.cid-uCc6AgR4cW .team-item .item-role p {
  margin-bottom: 0;
}
.cid-uCc6AgR4cW .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-uCc6AgR4cW .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-uCc6AgR4cW .team-item .item-caption {
  background: #efefef;
}
.cid-uDTvQZTGtc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-uDTvQZTGtc .title {
  margin-bottom: 2rem;
}
.cid-uDTvQZTGtc .mbr-section-subtitle {
  color: #767676;
}
.cid-uDTvQZTGtc a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uDTvQZTGtc a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uDTvQZTGtc .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uDTvQZTGtc .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uGO50I8QIQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-uGO50I8QIQ .card-img {
  background-color: #fff;
}
.cid-uGO50I8QIQ .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uGO50I8QIQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uGO50I8QIQ p {
  text-align: left;
}
.cid-uGO50I8QIQ .mbr-text {
  color: #767676;
}
.cid-uGO50I8QIQ .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uGO50I8QIQ .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uGO50I8QIQ .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uzNvszr1Fn {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-uzNvszr1Fn .card-img {
  background-color: #fff;
}
.cid-uzNvszr1Fn .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uzNvszr1Fn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uzNvszr1Fn p {
  text-align: left;
}
.cid-uzNvszr1Fn .mbr-text {
  color: #767676;
}
.cid-uzNvszr1Fn .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uzNvszr1Fn .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uzNvszr1Fn .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uDTwlpUyry {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-uDTwlpUyry .title {
  margin-bottom: 2rem;
}
.cid-uDTwlpUyry .mbr-section-subtitle {
  color: #767676;
}
.cid-uDTwlpUyry a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uDTwlpUyry a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uDTwlpUyry .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uDTwlpUyry .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uAsvTYNVHO {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-uAsvTYNVHO .card-img {
  background-color: #fff;
}
.cid-uAsvTYNVHO .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uAsvTYNVHO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uAsvTYNVHO p {
  text-align: left;
}
.cid-uAsvTYNVHO .mbr-text {
  color: #767676;
}
.cid-uAsvTYNVHO .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uAsvTYNVHO .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uAsvTYNVHO .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uBOoTsqEPE {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-uBOoTsqEPE .card-img {
  background-color: #fff;
}
.cid-uBOoTsqEPE .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uBOoTsqEPE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uBOoTsqEPE p {
  text-align: left;
}
.cid-uBOoTsqEPE .mbr-text {
  color: #767676;
}
.cid-uBOoTsqEPE .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uBOoTsqEPE .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uBOoTsqEPE .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uB344rkiTg {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-uB344rkiTg .title {
  margin-bottom: 2rem;
}
.cid-uB344rkiTg .mbr-section-subtitle {
  color: #767676;
}
.cid-uB344rkiTg a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uB344rkiTg a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uB344rkiTg .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uB344rkiTg .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uAQjxAAsVb {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uAQjxAAsVb .card-img {
  background-color: #fff;
}
.cid-uAQjxAAsVb .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uAQjxAAsVb h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uAQjxAAsVb p {
  text-align: left;
}
.cid-uAQjxAAsVb .mbr-text {
  color: #767676;
}
.cid-uAQjxAAsVb .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uAQjxAAsVb .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uAQjxAAsVb .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uAQxjgjFj8 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uAQxjgjFj8 .card-img {
  background-color: #fff;
}
.cid-uAQxjgjFj8 .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uAQxjgjFj8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uAQxjgjFj8 p {
  text-align: left;
}
.cid-uAQxjgjFj8 .mbr-text {
  color: #767676;
}
.cid-uAQxjgjFj8 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uAQxjgjFj8 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uAQxjgjFj8 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uDTwyOjTxe {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-uDTwyOjTxe .title {
  margin-bottom: 2rem;
}
.cid-uDTwyOjTxe .mbr-section-subtitle {
  color: #767676;
}
.cid-uDTwyOjTxe a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uDTwyOjTxe a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uDTwyOjTxe .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uDTwyOjTxe .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uB7ebIfcq6 .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uB7ebIfcq6 .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uB7ebIfcq6 a {
  font-style: normal;
}
.cid-uB7ebIfcq6 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uB7ebIfcq6 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uB7ebIfcq6 .nav-item:focus,
.cid-uB7ebIfcq6 .nav-link:focus {
  outline: none;
}
.cid-uB7ebIfcq6 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uB7ebIfcq6 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uB7ebIfcq6 .menu-logo {
  margin-right: auto;
}
.cid-uB7ebIfcq6 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uB7ebIfcq6 .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-uB7ebIfcq6 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uB7ebIfcq6 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uB7ebIfcq6 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uB7ebIfcq6 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uB7ebIfcq6 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uB7ebIfcq6 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uB7ebIfcq6 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uB7ebIfcq6 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uB7ebIfcq6 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uB7ebIfcq6 .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uB7ebIfcq6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uB7ebIfcq6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uB7ebIfcq6 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uB7ebIfcq6 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uB7ebIfcq6 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uB7ebIfcq6 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uB7ebIfcq6 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uB7ebIfcq6 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uB7ebIfcq6 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uB7ebIfcq6 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uB7ebIfcq6 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uB7ebIfcq6 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uB7ebIfcq6 button.navbar-toggler:focus {
  outline: none;
}
.cid-uB7ebIfcq6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uB7ebIfcq6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uB7ebIfcq6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uB7ebIfcq6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uB7ebIfcq6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uB7ebIfcq6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uB7ebIfcq6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uB7ebIfcq6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uB7ebIfcq6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uB7ebIfcq6 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uB7ebIfcq6 .collapsed .btn {
  display: -webkit-flex;
}
.cid-uB7ebIfcq6 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uB7ebIfcq6 .collapsed .navbar-collapse.collapsing,
.cid-uB7ebIfcq6 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uB7ebIfcq6 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uB7ebIfcq6 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uB7ebIfcq6 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uB7ebIfcq6 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uB7ebIfcq6 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uB7ebIfcq6 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uB7ebIfcq6 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uB7ebIfcq6 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uB7ebIfcq6 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uB7ebIfcq6 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uB7ebIfcq6 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uB7ebIfcq6 .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-uB7ebIfcq6 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uB7ebIfcq6 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uB7ebIfcq6 .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-uB7ebIfcq6.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uB7ebIfcq6 img {
    height: 3.8rem !important;
  }
  .cid-uB7ebIfcq6 .btn {
    display: -webkit-flex;
  }
  .cid-uB7ebIfcq6 button.navbar-toggler {
    display: block;
  }
  .cid-uB7ebIfcq6 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uB7ebIfcq6 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uB7ebIfcq6 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uB7ebIfcq6 .navbar-collapse.collapsing,
  .cid-uB7ebIfcq6 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uB7ebIfcq6 .navbar-collapse.collapsing .navbar-nav,
  .cid-uB7ebIfcq6 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uB7ebIfcq6 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uB7ebIfcq6 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uB7ebIfcq6 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uB7ebIfcq6 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uB7ebIfcq6 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uB7ebIfcq6 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uB7ebIfcq6 .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-uB7ebIfcq6 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uB7ebIfcq6 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uB7ebIfcq6 .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 (min-width: 767px) {
  .cid-uB7ebIfcq6 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uB7ebIfcq6 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uB7ebIfcq6 .nav-link:hover,
.cid-uB7ebIfcq6 .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uB7dvQ7wmO {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uB7dvQ7wmO .mbr-section-subtitle {
  color: #767676;
}
.cid-rELfEXGyRg {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-rELfEXGyRg .card-img {
  background-color: #fff;
}
.cid-rELfEXGyRg .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rELfEXGyRg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rELfEXGyRg p {
  text-align: left;
}
.cid-rELfEXGyRg .mbr-text {
  color: #767676;
}
.cid-rELfEXGyRg .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rELfEXGyRg .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rELfEXGyRg .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-rELfEXGyRg .card-title {
  text-align: center;
}
.cid-rELiwmXIee {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-rELiwmXIee .card-img {
  background-color: #fff;
}
.cid-rELiwmXIee .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-rELiwmXIee h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rELiwmXIee p {
  text-align: left;
}
.cid-rELiwmXIee .mbr-text {
  color: #767676;
}
.cid-rELiwmXIee .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rELiwmXIee .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rELiwmXIee .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uAS7GYBVXZ {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uAS7GYBVXZ .card-img {
  background-color: #fff;
}
.cid-uAS7GYBVXZ .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uAS7GYBVXZ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uAS7GYBVXZ p {
  text-align: left;
}
.cid-uAS7GYBVXZ .mbr-text {
  color: #767676;
}
.cid-uAS7GYBVXZ .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uAS7GYBVXZ .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uAS7GYBVXZ .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uCczSn1k9y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uCczSn1k9y .card-box {
  padding: 0 2rem;
}
.cid-uCczSn1k9y .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uCczSn1k9y .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-uCczSn1k9y h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-uCczSn1k9y p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-uCczSn1k9y .mbr-text {
  color: #767676;
}
.cid-uCczSn1k9y .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uCczSn1k9y .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-uCcEXm6XXd {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uCcEXm6XXd .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uCcEXm6XXd div.b {
  padding-top: 2rem;
}
.cid-refTbNLAS3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-refTbNLAS3 .title {
  margin-bottom: 2rem;
}
.cid-refTbNLAS3 .mbr-section-subtitle {
  color: #767676;
}
.cid-refTbNLAS3 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-refTbNLAS3 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-refTbNLAS3 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-refTbNLAS3 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-relH7qI2xo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-relH7qI2xo .content {
    text-align: center;
  }
  .cid-relH7qI2xo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-relH7qI2xo .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-relH7qI2xo .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-relH7qI2xo .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-relH7qI2xo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-relH7qI2xo .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-relH7qI2xo .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-relH7qI2xo .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-relH7qI2xo .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-relH7qI2xo .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-relH7qI2xo .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-relH7qI2xo .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tTj54nmFQE {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tTj54nmFQE .mbr-section-subtitle {
  color: #767676;
}
.cid-tTj54nAtld {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tTj54nAtld h2 {
  text-align: left;
}
.cid-tTj54nAtld h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tTj54nAtld p {
  color: #767676;
  text-align: left;
}
.cid-tTj54nAtld .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tTj54nAtld .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tTj54nAtld .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tTj54nAtld .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tTj54nAtld .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tTj54nAtld .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tTj54nAtld .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tTj54nAtld .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-tTj54nAtld .card-img span {
    font-size: 40px !important;
  }
}
.cid-tTj54nYAt2 {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tTj54nYAt2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tTj54nYAt2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTj54nYAt2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTj54nYAt2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tTj54nYAt2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tTj54nYAt2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tTj54nYAt2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tTj54nYAt2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tTj54nYAt2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tTj54ogwD1 {
  background: #149dcc;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #149dcc, #ffffff);
}
.cid-tTj54ogwD1 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tTj54ogwD1 .video-block {
    width: 100% !important;
  }
}
.cid-tTj54os1Vp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tTj54os1Vp .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-tTj54os1Vp .pricing {
    padding: 1.5rem;
  }
}
.cid-tTj54os1Vp .plan-header,
.cid-tTj54os1Vp .plan-body {
  background-color: #fff;
}
.cid-tTj54os1Vp .plan-title {
  margin-top: 1.4rem;
}
.cid-tTj54os1Vp .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-tTj54os1Vp .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tTj54os1Vp .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-tTj54os1Vp hr {
  margin: 2rem 0;
}
.cid-tTj54oOxTS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-tTj54oOxTS .title {
  margin-bottom: 2rem;
}
.cid-tTj54oOxTS .mbr-section-subtitle {
  color: #767676;
}
.cid-tTj54oOxTS a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tTj54oOxTS a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tTj54oOxTS .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tTj54oOxTS .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tTj54p5R7b {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-tTj54p5R7b .content {
    text-align: center;
  }
  .cid-tTj54p5R7b .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tTj54p5R7b .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tTj54p5R7b .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tTj54p5R7b .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tTj54p5R7b .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tTj54p5R7b .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tTj54p5R7b .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tTj54p5R7b .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tTj54p5R7b .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tTj54p5R7b .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tTj54p5R7b .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tTj54p5R7b .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tTXEem3sq0 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tTXEem3sq0 .mbr-section-subtitle {
  color: #767676;
}
.cid-tTXEemetJY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tTXEemetJY h2 {
  text-align: left;
}
.cid-tTXEemetJY h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tTXEemetJY p {
  color: #767676;
  text-align: left;
}
.cid-tTXEemetJY .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tTXEemetJY .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tTXEemetJY .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tTXEemetJY .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tTXEemetJY .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tTXEemetJY .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tTXEemetJY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tTXEemetJY .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-tTXEemetJY .card-img span {
    font-size: 40px !important;
  }
}
.cid-tTXEemBfxh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/advantage-polo-introduction-1200x1200.jpg");
}
.cid-tTXEemBfxh .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tTXEemBfxh .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tTXEemBfxh .mbr-figure img {
    width: 100% !important;
  }
}
.cid-uE2J8khCvj {
  background: #149dcc;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #149dcc, #ffffff);
}
.cid-uE2J8khCvj .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uE2J8khCvj .video-block {
    width: 100% !important;
  }
}
.cid-tTXEemPAAx {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tTXEemPAAx img,
.cid-tTXEemPAAx .item-img {
  width: 100%;
}
.cid-tTXEemPAAx .item:focus,
.cid-tTXEemPAAx span:focus {
  outline: none;
}
.cid-tTXEemPAAx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tTXEemPAAx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tTXEemPAAx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTXEemPAAx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tTXEemPAAx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tTXEemPAAx .mbr-section-title {
  color: #232323;
}
.cid-tTXEemPAAx .mbr-text,
.cid-tTXEemPAAx .mbr-section-btn {
  text-align: left;
}
.cid-tTXEemPAAx .item-title {
  text-align: left;
}
.cid-tTXEemPAAx .item-subtitle {
  text-align: center;
}
.cid-uEb5f1qurl {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uEb5f1qurl .mbr-section-subtitle {
  color: #767676;
}
.cid-uEb5f1qurl .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uEb5f1qurl .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-uEb5f1qurl .team-item .item-image img {
  width: 100%;
}
.cid-uEb5f1qurl .team-item .item-name p {
  margin-bottom: 0;
}
.cid-uEb5f1qurl .team-item .item-role p {
  margin-bottom: 0;
}
.cid-uEb5f1qurl .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-uEb5f1qurl .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-uEb5f1qurl .team-item .item-caption {
  background: #efefef;
}
.cid-tTXEenEsim {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tTXEenEsim .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-tTXEenEsim .pricing {
    padding: 1.5rem;
  }
}
.cid-tTXEenEsim .plan-header,
.cid-tTXEenEsim .plan-body {
  background-color: #fff;
}
.cid-tTXEenEsim .plan-title {
  margin-top: 1.4rem;
}
.cid-tTXEenEsim .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-tTXEenEsim .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tTXEenEsim .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-tTXEenEsim hr {
  margin: 2rem 0;
}
.cid-tTXEenWkqM {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-tTXEenWkqM .title {
  margin-bottom: 2rem;
}
.cid-tTXEenWkqM .mbr-section-subtitle {
  color: #767676;
}
.cid-tTXEenWkqM a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tTXEenWkqM a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tTXEenWkqM .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tTXEenWkqM .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tTXEeodPFe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-tTXEeodPFe .content {
    text-align: center;
  }
  .cid-tTXEeodPFe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tTXEeodPFe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tTXEeodPFe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tTXEeodPFe .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tTXEeodPFe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tTXEeodPFe .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tTXEeodPFe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tTXEeodPFe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tTXEeodPFe .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tTXEeodPFe .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tTXEeodPFe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tTXEeodPFe .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uCIUBVOpSc .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uCIUBVOpSc .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uCIUBVOpSc a {
  font-style: normal;
}
.cid-uCIUBVOpSc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uCIUBVOpSc .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uCIUBVOpSc .nav-item:focus,
.cid-uCIUBVOpSc .nav-link:focus {
  outline: none;
}
.cid-uCIUBVOpSc .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uCIUBVOpSc .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uCIUBVOpSc .menu-logo {
  margin-right: auto;
}
.cid-uCIUBVOpSc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uCIUBVOpSc .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-uCIUBVOpSc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uCIUBVOpSc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uCIUBVOpSc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uCIUBVOpSc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uCIUBVOpSc .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uCIUBVOpSc .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uCIUBVOpSc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uCIUBVOpSc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uCIUBVOpSc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uCIUBVOpSc .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uCIUBVOpSc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uCIUBVOpSc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCIUBVOpSc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uCIUBVOpSc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCIUBVOpSc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uCIUBVOpSc .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uCIUBVOpSc .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uCIUBVOpSc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uCIUBVOpSc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uCIUBVOpSc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uCIUBVOpSc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uCIUBVOpSc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uCIUBVOpSc button.navbar-toggler:focus {
  outline: none;
}
.cid-uCIUBVOpSc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uCIUBVOpSc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCIUBVOpSc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCIUBVOpSc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCIUBVOpSc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCIUBVOpSc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCIUBVOpSc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCIUBVOpSc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCIUBVOpSc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCIUBVOpSc .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uCIUBVOpSc .collapsed .btn {
  display: -webkit-flex;
}
.cid-uCIUBVOpSc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uCIUBVOpSc .collapsed .navbar-collapse.collapsing,
.cid-uCIUBVOpSc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uCIUBVOpSc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uCIUBVOpSc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uCIUBVOpSc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uCIUBVOpSc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uCIUBVOpSc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uCIUBVOpSc .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uCIUBVOpSc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uCIUBVOpSc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uCIUBVOpSc .collapsed button.navbar-toggler {
  display: block;
}
.cid-uCIUBVOpSc .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uCIUBVOpSc .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uCIUBVOpSc .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-uCIUBVOpSc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uCIUBVOpSc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uCIUBVOpSc .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-uCIUBVOpSc.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uCIUBVOpSc img {
    height: 3.8rem !important;
  }
  .cid-uCIUBVOpSc .btn {
    display: -webkit-flex;
  }
  .cid-uCIUBVOpSc button.navbar-toggler {
    display: block;
  }
  .cid-uCIUBVOpSc .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uCIUBVOpSc .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uCIUBVOpSc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uCIUBVOpSc .navbar-collapse.collapsing,
  .cid-uCIUBVOpSc .navbar-collapse.show {
    display: block !important;
  }
  .cid-uCIUBVOpSc .navbar-collapse.collapsing .navbar-nav,
  .cid-uCIUBVOpSc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uCIUBVOpSc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uCIUBVOpSc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uCIUBVOpSc .navbar-collapse.collapsing .navbar-buttons,
  .cid-uCIUBVOpSc .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uCIUBVOpSc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uCIUBVOpSc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uCIUBVOpSc .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-uCIUBVOpSc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uCIUBVOpSc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uCIUBVOpSc .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 (min-width: 767px) {
  .cid-uCIUBVOpSc .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uCIUBVOpSc .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uCIUBVOpSc .nav-link:hover,
.cid-uCIUBVOpSc .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uCIUBWcpME {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uCIUBWcpME .mbr-section-subtitle {
  color: #767676;
}
.cid-uCIUBWuHY9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-uCIUBWuHY9 h2 {
  text-align: left;
}
.cid-uCIUBWuHY9 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uCIUBWuHY9 p {
  color: #767676;
  text-align: left;
}
.cid-uCIUBWuHY9 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uCIUBWuHY9 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uCIUBWuHY9 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uCIUBWuHY9 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uCIUBWuHY9 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uCIUBWuHY9 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uCIUBWuHY9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uCIUBWuHY9 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uCIUBWuHY9 .card-img span {
    font-size: 40px !important;
  }
}
.cid-uCIUBWVKV2 {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/greg-norman-polo-shirt-g7s3k440-with-logo-service-intro-1000px.jpg");
}
.cid-uCIUBWVKV2 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uCIUBWVKV2 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uCIUBWVKV2 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-uD9yWYQoC1 {
  background: #149dcc;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #149dcc, #ffffff);
}
.cid-uD9yWYQoC1 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uD9yWYQoC1 .video-block {
    width: 100% !important;
  }
}
.cid-uCIUBXiKuf {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCIUBXiKuf img,
.cid-uCIUBXiKuf .item-img {
  width: 100%;
}
.cid-uCIUBXiKuf .item:focus,
.cid-uCIUBXiKuf span:focus {
  outline: none;
}
.cid-uCIUBXiKuf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uCIUBXiKuf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uCIUBXiKuf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uCIUBXiKuf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uCIUBXiKuf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uCIUBXiKuf .mbr-section-title {
  color: #232323;
}
.cid-uCIUBXiKuf .mbr-text,
.cid-uCIUBXiKuf .mbr-section-btn {
  text-align: left;
}
.cid-uCIUBXiKuf .item-title {
  text-align: left;
}
.cid-uCIUBXiKuf .item-subtitle {
  text-align: center;
}
.cid-uDWTlFYHk5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uDWTlFYHk5 .mbr-section-subtitle {
  color: #767676;
}
.cid-uDWTlFYHk5 .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uDWTlFYHk5 .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-uDWTlFYHk5 .team-item .item-image img {
  width: 100%;
}
.cid-uDWTlFYHk5 .team-item .item-name p {
  margin-bottom: 0;
}
.cid-uDWTlFYHk5 .team-item .item-role p {
  margin-bottom: 0;
}
.cid-uDWTlFYHk5 .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-uDWTlFYHk5 .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-uDWTlFYHk5 .team-item .item-caption {
  background: #efefef;
}
.cid-uCIUBYmEdC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-uCIUBYmEdC .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-uCIUBYmEdC .pricing {
    padding: 1.5rem;
  }
}
.cid-uCIUBYmEdC .plan-header,
.cid-uCIUBYmEdC .plan-body {
  background-color: #fff;
}
.cid-uCIUBYmEdC .plan-title {
  margin-top: 1.4rem;
}
.cid-uCIUBYmEdC .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-uCIUBYmEdC .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uCIUBYmEdC .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-uCIUBYmEdC hr {
  margin: 2rem 0;
}
.cid-uCIUBYLcgV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-uCIUBYLcgV .title {
  margin-bottom: 2rem;
}
.cid-uCIUBYLcgV .mbr-section-subtitle {
  color: #767676;
}
.cid-uCIUBYLcgV a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uCIUBYLcgV a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uCIUBYLcgV .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uCIUBYLcgV .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uCIUBZ8AXc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-uCIUBZ8AXc .content {
    text-align: center;
  }
  .cid-uCIUBZ8AXc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uCIUBZ8AXc .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uCIUBZ8AXc .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uCIUBZ8AXc .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uCIUBZ8AXc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uCIUBZ8AXc .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uCIUBZ8AXc .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-uCIUBZ8AXc .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uCIUBZ8AXc .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uCIUBZ8AXc .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uCIUBZ8AXc .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uCIUBZ8AXc .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-sjYJPH9zal {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sjYJPH9zal .mbr-section-subtitle {
  color: #767676;
}
.cid-resCoTPYB8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-resCoTPYB8 h2 {
  text-align: left;
}
.cid-resCoTPYB8 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-resCoTPYB8 p {
  color: #767676;
  text-align: left;
}
.cid-resCoTPYB8 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-resCoTPYB8 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-resCoTPYB8 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-resCoTPYB8 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-resCoTPYB8 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-resCoTPYB8 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-resCoTPYB8 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-resCoTPYB8 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-resCoTPYB8 .card-img span {
    font-size: 40px !important;
  }
}
.cid-resCoUqbS4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-resCoUqbS4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-resCoUqbS4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-resCoUqbS4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-resCoUqbS4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-resCoUqbS4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-resCoUqbS4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-resCoUqbS4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-resCoUqbS4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-resCoUqbS4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-resCoUYMuZ {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-resCoUYMuZ .image-block {
  margin: auto;
}
.cid-resCoUYMuZ figcaption {
  position: relative;
}
.cid-resCoUYMuZ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-resCoUYMuZ .image-block {
    width: 100% !important;
  }
}
.cid-resCoVGS3g {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-resCoVGS3g .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-resCoVGS3g .pricing {
    padding: 1.5rem;
  }
}
.cid-resCoVGS3g .plan-header,
.cid-resCoVGS3g .plan-body {
  background-color: #fff;
}
.cid-resCoVGS3g .plan-title {
  margin-top: 1.4rem;
}
.cid-resCoVGS3g .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-resCoVGS3g .price-figure {
    font-size: 4.25rem;
  }
}
.cid-resCoVGS3g .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-resCoVGS3g hr {
  margin: 2rem 0;
}
.cid-resCoWdCiU {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-resCoWdCiU .title {
  margin-bottom: 2rem;
}
.cid-resCoWdCiU .mbr-section-subtitle {
  color: #767676;
}
.cid-resCoWdCiU a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-resCoWdCiU a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-resCoWdCiU .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-resCoWdCiU .input-group-btn {
  display: block;
  text-align: center;
}
.cid-resCoWKv7L {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-resCoWKv7L .content {
    text-align: center;
  }
  .cid-resCoWKv7L .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-resCoWKv7L .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-resCoWKv7L .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-resCoWKv7L .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-resCoWKv7L .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-resCoWKv7L .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-resCoWKv7L .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-resCoWKv7L .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-resCoWKv7L .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-resCoWKv7L .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-resCoWKv7L .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-resCoWKv7L .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uzEn75hyVd {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uzEn75hyVd .card-img {
  background-color: #fff;
}
.cid-uzEn75hyVd .card {
  align-self: stretch;
}
.cid-uzEn75hyVd .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-uzEn75hyVd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uzEn75hyVd p {
  text-align: left;
}
.cid-uzEn75hyVd .mbr-text {
  color: #767676;
}
.cid-uzEn75hyVd .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uzEn75hyVd .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-uzEn75hyVd .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uDTwFxhSV6 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-uDTwFxhSV6 .title {
  margin-bottom: 2rem;
}
.cid-uDTwFxhSV6 .mbr-section-subtitle {
  color: #767676;
}
.cid-uDTwFxhSV6 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uDTwFxhSV6 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uDTwFxhSV6 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uDTwFxhSV6 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uARR4ESGDZ .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uARR4ESGDZ a {
  font-style: normal;
}
.cid-uARR4ESGDZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uARR4ESGDZ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uARR4ESGDZ .nav-item:focus,
.cid-uARR4ESGDZ .nav-link:focus {
  outline: none;
}
.cid-uARR4ESGDZ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uARR4ESGDZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uARR4ESGDZ .menu-logo {
  margin-right: auto;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uARR4ESGDZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uARR4ESGDZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uARR4ESGDZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uARR4ESGDZ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uARR4ESGDZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uARR4ESGDZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uARR4ESGDZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uARR4ESGDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uARR4ESGDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uARR4ESGDZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uARR4ESGDZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uARR4ESGDZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uARR4ESGDZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uARR4ESGDZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uARR4ESGDZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uARR4ESGDZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uARR4ESGDZ .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-uARR4ESGDZ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ img {
    height: 3.8rem !important;
  }
  .cid-uARR4ESGDZ .btn {
    display: -webkit-flex;
  }
  .cid-uARR4ESGDZ button.navbar-toggler {
    display: block;
  }
  .cid-uARR4ESGDZ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uARR4ESGDZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uARR4ESGDZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing,
  .cid-uARR4ESGDZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uARR4ESGDZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uARR4ESGDZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uARR4ESGDZ .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-uARR4ESGDZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uARR4ESGDZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uARR4ESGDZ .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 (min-width: 767px) {
  .cid-uARR4ESGDZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uARR4ESGDZ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uARR4ESGDZ .nav-link:hover,
.cid-uARR4ESGDZ .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tRuKuKG94O {
  background: #ffffff;
}
.cid-tRuKuKG94O .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tRuKuKG94O .mbr-figure {
  margin: 0 auto;
}
.cid-tRuKuKG94O figcaption {
  position: relative;
}
.cid-tRuKuKG94O figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tRuKuKG94O .image-block {
    width: 100% !important;
  }
}
.cid-tRv2t80WYH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tRv2t80WYH .mbr-section-subtitle {
  color: #767676;
}
.cid-sTuGGHzoBP {
  background: #ffffff;
}
.cid-sTuGGHzoBP .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sTuGGHzoBP .mbr-figure {
  margin: 0 auto;
}
.cid-sTuGGHzoBP figcaption {
  position: relative;
}
.cid-sTuGGHzoBP figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sTuGGHzoBP .image-block {
    width: 100% !important;
  }
}
.cid-sTjULH1A4c {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sTjULH1A4c .mbr-section-subtitle {
  color: #767676;
}
.cid-uz3HBBNOH6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uz3HBBNOH6 img,
.cid-uz3HBBNOH6 .item-img {
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  height: 100%;
  min-height: 400px;
  height: 400px;
  object-fit: cover;
}
.cid-uz3HBBNOH6 .item:focus,
.cid-uz3HBBNOH6 span:focus {
  outline: none;
}
.cid-uz3HBBNOH6 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uz3HBBNOH6 .item {
    margin-bottom: 1rem;
  }
}
.cid-uz3HBBNOH6 h5 {
  margin: 0;
}
.cid-uz3HBBNOH6 .item-content {
  margin-top: 1rem;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uz3HBBNOH6 .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  padding: 1rem;
  flex-flow: column nowrap;
  border: 1px solid lightgray;
  transition: all 0.3s;
}
.cid-uz3HBBNOH6 .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uz3HBBNOH6 .item-wrapper:hover {
  border-color: #99f7ec;
}
.cid-uz3HBBNOH6 .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .cid-uz3HBBNOH6 .item-wrapper {
    height: auto;
  }
}
.cid-uz3HBBNOH6 .mbr-section-title {
  color: #4e423d;
  text-align: left;
}
.cid-uz3HBBNOH6 .item-title {
  text-align: center;
}
.cid-uz3HBBNOH6 .item-subtitle {
  text-align: center;
}
.cid-uz3HBBNOH6 .mbr-text,
.cid-uz3HBBNOH6 .item .mbr-section-btn {
  text-align: center;
}
.cid-uz3HBBNOH6 .content-head {
  max-width: 800px;
}
.cid-uz3HBBNOH6 .mbr-section-subtitle,
.cid-uz3HBBNOH6 .mbr-section-head .mbr-section-btn {
  text-align: left;
}
.cid-uz4pCEP4YI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uz4pCEP4YI img,
.cid-uz4pCEP4YI .item-img {
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  height: 100%;
  min-height: 400px;
  height: 400px;
  object-fit: cover;
}
.cid-uz4pCEP4YI .item:focus,
.cid-uz4pCEP4YI span:focus {
  outline: none;
}
.cid-uz4pCEP4YI .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uz4pCEP4YI .item {
    margin-bottom: 1rem;
  }
}
.cid-uz4pCEP4YI h5 {
  margin: 0;
}
.cid-uz4pCEP4YI .item-content {
  margin-top: 1rem;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uz4pCEP4YI .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  padding: 1rem;
  flex-flow: column nowrap;
  border: 1px solid lightgray;
  transition: all 0.3s;
}
.cid-uz4pCEP4YI .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uz4pCEP4YI .item-wrapper:hover {
  border-color: #99f7ec;
}
.cid-uz4pCEP4YI .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .cid-uz4pCEP4YI .item-wrapper {
    height: auto;
  }
}
.cid-uz4pCEP4YI .mbr-section-title {
  color: #4e423d;
  text-align: left;
}
.cid-uz4pCEP4YI .item-title {
  text-align: center;
}
.cid-uz4pCEP4YI .item-subtitle {
  text-align: center;
}
.cid-uz4pCEP4YI .mbr-text,
.cid-uz4pCEP4YI .item .mbr-section-btn {
  text-align: center;
}
.cid-uz4pCEP4YI .content-head {
  max-width: 800px;
}
.cid-uz4pCEP4YI .mbr-section-subtitle,
.cid-uz4pCEP4YI .mbr-section-head .mbr-section-btn {
  text-align: left;
}
.cid-uCLeC8U5W6 {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uCLeC8U5W6 .mbr-section-subtitle {
  color: #767676;
}
.cid-uCLeC8U5W6 .btn {
  margin: 0 0 .5rem 0;
}
.cid-tRZ5Qz7xYT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tRZ5Qz7xYT .card-box {
  padding: 0 2rem;
}
.cid-tRZ5Qz7xYT .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tRZ5Qz7xYT .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-tRZ5Qz7xYT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-tRZ5Qz7xYT p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-tRZ5Qz7xYT .mbr-text {
  color: #767676;
}
.cid-tRZ5Qz7xYT .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tRZ5Qz7xYT .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sT8lR5gdSz {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-sT8lR5gdSz .mbr-section-subtitle {
  color: #767676;
}
.cid-sT8lR5gdSz .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sT8lR5gdSz .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-sT8lR5gdSz .team-item .item-image img {
  width: 100%;
}
.cid-sT8lR5gdSz .team-item .item-name p {
  margin-bottom: 0;
}
.cid-sT8lR5gdSz .team-item .item-role p {
  margin-bottom: 0;
}
.cid-sT8lR5gdSz .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sT8lR5gdSz .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-sT8lR5gdSz .team-item .item-caption {
  background: #efefef;
}
.cid-re8t3ZRfYh {
  background-image: url("../../../assets/images/nike-golf-vmp-637167-with-logo-service-at-sports-profile-clothing-2.jpeg");
}
.cid-re8t3ZRfYh .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-re8t3ZRfYh .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-re8t3ZRfYh .mbr-figure img {
    width: 100% !important;
  }
}
.cid-qTkAaeaxX5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #062b36;
}
@media (max-width: 767px) {
  .cid-qTkAaeaxX5 .content {
    text-align: center;
  }
  .cid-qTkAaeaxX5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qTkAaeaxX5 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qTkAaeaxX5 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qTkAaeaxX5 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qTkAaeaxX5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qTkAaeaxX5 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qTkAaeaxX5 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qTkAaeaxX5 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qTkAaeaxX5 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qTkAaeaxX5 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qTkAaeaxX5 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qTkAaeaxX5 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZ0Bn6vHSc .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uZ0Bn6vHSc .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-uZ0Bn6vHSc a {
  font-style: normal;
}
.cid-uZ0Bn6vHSc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZ0Bn6vHSc .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uZ0Bn6vHSc .nav-item:focus,
.cid-uZ0Bn6vHSc .nav-link:focus {
  outline: none;
}
.cid-uZ0Bn6vHSc .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZ0Bn6vHSc .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZ0Bn6vHSc .menu-logo {
  margin-right: auto;
}
.cid-uZ0Bn6vHSc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uZ0Bn6vHSc .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-uZ0Bn6vHSc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZ0Bn6vHSc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZ0Bn6vHSc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uZ0Bn6vHSc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZ0Bn6vHSc .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uZ0Bn6vHSc .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZ0Bn6vHSc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZ0Bn6vHSc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZ0Bn6vHSc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZ0Bn6vHSc .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZ0Bn6vHSc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZ0Bn6vHSc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ0Bn6vHSc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZ0Bn6vHSc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ0Bn6vHSc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZ0Bn6vHSc .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZ0Bn6vHSc .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZ0Bn6vHSc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZ0Bn6vHSc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZ0Bn6vHSc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZ0Bn6vHSc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZ0Bn6vHSc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZ0Bn6vHSc button.navbar-toggler:focus {
  outline: none;
}
.cid-uZ0Bn6vHSc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-uZ0Bn6vHSc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZ0Bn6vHSc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ0Bn6vHSc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ0Bn6vHSc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZ0Bn6vHSc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ0Bn6vHSc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZ0Bn6vHSc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZ0Bn6vHSc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ0Bn6vHSc .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZ0Bn6vHSc .collapsed .btn {
  display: -webkit-flex;
}
.cid-uZ0Bn6vHSc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZ0Bn6vHSc .collapsed .navbar-collapse.collapsing,
.cid-uZ0Bn6vHSc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZ0Bn6vHSc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZ0Bn6vHSc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZ0Bn6vHSc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZ0Bn6vHSc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZ0Bn6vHSc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZ0Bn6vHSc .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZ0Bn6vHSc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZ0Bn6vHSc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZ0Bn6vHSc .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZ0Bn6vHSc .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZ0Bn6vHSc .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZ0Bn6vHSc .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-uZ0Bn6vHSc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZ0Bn6vHSc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZ0Bn6vHSc .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-uZ0Bn6vHSc.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZ0Bn6vHSc img {
    height: 3.8rem !important;
  }
  .cid-uZ0Bn6vHSc .btn {
    display: -webkit-flex;
  }
  .cid-uZ0Bn6vHSc button.navbar-toggler {
    display: block;
  }
  .cid-uZ0Bn6vHSc .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZ0Bn6vHSc .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZ0Bn6vHSc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZ0Bn6vHSc .navbar-collapse.collapsing,
  .cid-uZ0Bn6vHSc .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZ0Bn6vHSc .navbar-collapse.collapsing .navbar-nav,
  .cid-uZ0Bn6vHSc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZ0Bn6vHSc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZ0Bn6vHSc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZ0Bn6vHSc .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZ0Bn6vHSc .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZ0Bn6vHSc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZ0Bn6vHSc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZ0Bn6vHSc .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-uZ0Bn6vHSc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZ0Bn6vHSc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZ0Bn6vHSc .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 (min-width: 767px) {
  .cid-uZ0Bn6vHSc .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uZ0Bn6vHSc .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uZ0Bn6vHSc .nav-link:hover,
.cid-uZ0Bn6vHSc .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-uZ0Bn75APw {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uZ0Bn75APw .mbr-section-subtitle {
  color: #767676;
}
.cid-uZ0Bn7oJ1c {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-uZ0Bn7oJ1c h2 {
  text-align: left;
}
.cid-uZ0Bn7oJ1c h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uZ0Bn7oJ1c p {
  color: #767676;
  text-align: left;
}
.cid-uZ0Bn7oJ1c .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uZ0Bn7oJ1c .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uZ0Bn7oJ1c .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZ0Bn7oJ1c .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uZ0Bn7oJ1c .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uZ0Bn7oJ1c .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uZ0Bn7oJ1c .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ0Bn7oJ1c .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uZ0Bn7oJ1c .card-img span {
    font-size: 40px !important;
  }
}
.cid-uZ0Bn7RHMR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZ0Bn7RHMR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZ0Bn7RHMR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ0Bn7RHMR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ0Bn7RHMR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZ0Bn7RHMR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uZ0Bn7RHMR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uZ0Bn7RHMR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uZ0Bn7RHMR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uZ0Bn7RHMR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uZ0Bn8jyz5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-uZ0Bn8jyz5 .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-uZ0Bn8jyz5 .pricing {
    padding: 1.5rem;
  }
}
.cid-uZ0Bn8jyz5 .plan-header,
.cid-uZ0Bn8jyz5 .plan-body {
  background-color: #fff;
}
.cid-uZ0Bn8jyz5 .plan-title {
  margin-top: 1.4rem;
}
.cid-uZ0Bn8jyz5 .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-uZ0Bn8jyz5 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uZ0Bn8jyz5 .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-uZ0Bn8jyz5 hr {
  margin: 2rem 0;
}
.cid-uZ0Bn8KcEz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-uZ0Bn8KcEz .title {
  margin-bottom: 2rem;
}
.cid-uZ0Bn8KcEz .mbr-section-subtitle {
  color: #767676;
}
.cid-uZ0Bn8KcEz a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uZ0Bn8KcEz a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uZ0Bn8KcEz .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uZ0Bn8KcEz .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uZ0Bn9bdSv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-uZ0Bn9bdSv .content {
    text-align: center;
  }
  .cid-uZ0Bn9bdSv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ0Bn9bdSv .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uZ0Bn9bdSv .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uZ0Bn9bdSv .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uZ0Bn9bdSv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZ0Bn9bdSv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uZ0Bn9bdSv .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-uZ0Bn9bdSv .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uZ0Bn9bdSv .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZ0Bn9bdSv .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZ0Bn9bdSv .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZ0Bn9bdSv .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v7RMct8Bpz .navbar {
  background: #073b4c;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v7RMct8Bpz .navbar-dropdown.bg-color.transparent.opened {
  background: #073b4c;
}
.cid-v7RMct8Bpz a {
  font-style: normal;
}
.cid-v7RMct8Bpz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v7RMct8Bpz .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v7RMct8Bpz .nav-item:focus,
.cid-v7RMct8Bpz .nav-link:focus {
  outline: none;
}
.cid-v7RMct8Bpz .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v7RMct8Bpz .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v7RMct8Bpz .menu-logo {
  margin-right: auto;
}
.cid-v7RMct8Bpz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v7RMct8Bpz .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-v7RMct8Bpz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v7RMct8Bpz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v7RMct8Bpz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v7RMct8Bpz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v7RMct8Bpz .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v7RMct8Bpz .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v7RMct8Bpz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v7RMct8Bpz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v7RMct8Bpz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v7RMct8Bpz .dropdown .dropdown-menu {
  background: #073b4c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v7RMct8Bpz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v7RMct8Bpz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7RMct8Bpz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v7RMct8Bpz .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7RMct8Bpz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v7RMct8Bpz .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v7RMct8Bpz .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v7RMct8Bpz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v7RMct8Bpz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v7RMct8Bpz .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v7RMct8Bpz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v7RMct8Bpz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v7RMct8Bpz button.navbar-toggler:focus {
  outline: none;
}
.cid-v7RMct8Bpz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-v7RMct8Bpz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v7RMct8Bpz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v7RMct8Bpz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v7RMct8Bpz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v7RMct8Bpz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v7RMct8Bpz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v7RMct8Bpz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v7RMct8Bpz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v7RMct8Bpz .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v7RMct8Bpz .collapsed .btn {
  display: -webkit-flex;
}
.cid-v7RMct8Bpz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v7RMct8Bpz .collapsed .navbar-collapse.collapsing,
.cid-v7RMct8Bpz .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v7RMct8Bpz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v7RMct8Bpz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v7RMct8Bpz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v7RMct8Bpz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v7RMct8Bpz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v7RMct8Bpz .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v7RMct8Bpz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v7RMct8Bpz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v7RMct8Bpz .collapsed button.navbar-toggler {
  display: block;
}
.cid-v7RMct8Bpz .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v7RMct8Bpz .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v7RMct8Bpz .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-v7RMct8Bpz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v7RMct8Bpz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v7RMct8Bpz .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-v7RMct8Bpz.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v7RMct8Bpz img {
    height: 3.8rem !important;
  }
  .cid-v7RMct8Bpz .btn {
    display: -webkit-flex;
  }
  .cid-v7RMct8Bpz button.navbar-toggler {
    display: block;
  }
  .cid-v7RMct8Bpz .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v7RMct8Bpz .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v7RMct8Bpz .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v7RMct8Bpz .navbar-collapse.collapsing,
  .cid-v7RMct8Bpz .navbar-collapse.show {
    display: block !important;
  }
  .cid-v7RMct8Bpz .navbar-collapse.collapsing .navbar-nav,
  .cid-v7RMct8Bpz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v7RMct8Bpz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v7RMct8Bpz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v7RMct8Bpz .navbar-collapse.collapsing .navbar-buttons,
  .cid-v7RMct8Bpz .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v7RMct8Bpz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v7RMct8Bpz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v7RMct8Bpz .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-v7RMct8Bpz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v7RMct8Bpz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v7RMct8Bpz .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 (min-width: 767px) {
  .cid-v7RMct8Bpz .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v7RMct8Bpz .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v7RMct8Bpz .nav-link:hover,
.cid-v7RMct8Bpz .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-v7RMctHdB2 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-v7RMctHdB2 h2 {
  text-align: left;
}
.cid-v7RMctHdB2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-v7RMctHdB2 p {
  color: #767676;
  text-align: left;
}
.cid-v7RMctHdB2 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-v7RMctHdB2 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-v7RMctHdB2 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v7RMctHdB2 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-v7RMctHdB2 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-v7RMctHdB2 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-v7RMctHdB2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v7RMctHdB2 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-v7RMctHdB2 .card-img span {
    font-size: 40px !important;
  }
}
.cid-v7RMctHdB2 P {
  color: #465052;
}
.cid-v88c57xFjk {
  padding-top: 45px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-v88c57xFjk .images-container.container-fluid {
  padding: 0;
}
.cid-v88c57xFjk .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-v88c57xFjk .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-v88c57xFjk .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-v88c57xFjk .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-v88c57xFjk .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-v88c57xFjk .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-v88c57xFjk .img-item {
    width: 100% !important;
  }
  .cid-v88c57xFjk .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-v7Smg5a1t7 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v7Smg5a1t7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7Smg5a1t7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7Smg5a1t7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7Smg5a1t7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7Smg5a1t7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-v7Smg5a1t7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7Smg5a1t7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7Smg5a1t7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7Smg5a1t7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-v7RMcuE8J6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-v7RMcuE8J6 .pricing {
  padding: 3.3rem;
  color: #767676;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cid-v7RMcuE8J6 .pricing {
    padding: 1.5rem;
  }
}
.cid-v7RMcuE8J6 .plan-header,
.cid-v7RMcuE8J6 .plan-body {
  background-color: #fff;
}
.cid-v7RMcuE8J6 .plan-title {
  margin-top: 1.4rem;
}
.cid-v7RMcuE8J6 .price-figure {
  font-weight: 700;
  color: #232323;
}
@media (max-width: 550px) {
  .cid-v7RMcuE8J6 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-v7RMcuE8J6 .price-value {
  font-weight: 700;
  vertical-align: top;
}
.cid-v7RMcuE8J6 hr {
  margin: 2rem 0;
}
.cid-v7RMcvbFaX {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #99f0f7;
}
.cid-v7RMcvbFaX .title {
  margin-bottom: 2rem;
}
.cid-v7RMcvbFaX .mbr-section-subtitle {
  color: #767676;
}
.cid-v7RMcvbFaX a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-v7RMcvbFaX a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-v7RMcvbFaX .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-v7RMcvbFaX .input-group-btn {
  display: block;
  text-align: center;
}
.cid-v7RMcvGx1U {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-v7RMcvGx1U .content {
    text-align: center;
  }
  .cid-v7RMcvGx1U .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v7RMcvGx1U .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-v7RMcvGx1U .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v7RMcvGx1U .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-v7RMcvGx1U .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v7RMcvGx1U .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-v7RMcvGx1U .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-v7RMcvGx1U .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v7RMcvGx1U .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7RMcvGx1U .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7RMcvGx1U .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7RMcvGx1U .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
