body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-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: #859b84 !important;
}
.bg-success {
  background-color: #f7ed4a !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: #859b84 !important;
  border-color: #859b84 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #5f745e !important;
  border-color: #5f745e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #5f745e !important;
  border-color: #5f745e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0f7699 !important;
  border-color: #0f7699 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #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: #546653;
  color: #546653;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #859b84;
  border-color: #859b84;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #859b84 !important;
  border-color: #859b84 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #062e3c;
  color: #062e3c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #0f7699;
  border-color: #0f7699;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0f7699 !important;
  border-color: #0f7699 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #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: #859b84 !important;
}
.text-secondary {
  color: #0f7699 !important;
}
.text-success {
  color: #f7ed4a !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: #546653 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #062e3c !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #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: #859b84;
  border-color: #859b84;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #859b84;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cbd4ca;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #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: #859b84;
}
/* 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: #859b84;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #859b84;
}
.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: #859b84;
  color: #ffffff;
}
.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: #859b84;
  border-bottom-color: #859b84;
}
.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: #859b84 !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: #0f7699 !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='%23859b84' %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-qxEd6DOOje .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-qxEd6DOOje .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qxEd6DOOje a {
  font-style: normal;
}
.cid-qxEd6DOOje .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qxEd6DOOje .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qxEd6DOOje .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qxEd6DOOje .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qxEd6DOOje .menu-logo {
  margin-right: auto;
}
.cid-qxEd6DOOje .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qxEd6DOOje .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-qxEd6DOOje .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qxEd6DOOje .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qxEd6DOOje .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qxEd6DOOje .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qxEd6DOOje .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qxEd6DOOje .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qxEd6DOOje .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qxEd6DOOje .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qxEd6DOOje .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qxEd6DOOje .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qxEd6DOOje .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qxEd6DOOje .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qxEd6DOOje .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qxEd6DOOje .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-qxEd6DOOje .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qxEd6DOOje .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qxEd6DOOje .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qxEd6DOOje .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qxEd6DOOje .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qxEd6DOOje .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qxEd6DOOje button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qxEd6DOOje button.navbar-toggler:focus {
  outline: none;
}
.cid-qxEd6DOOje button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-qxEd6DOOje button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qxEd6DOOje button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qxEd6DOOje button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qxEd6DOOje button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qxEd6DOOje nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qxEd6DOOje nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qxEd6DOOje nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qxEd6DOOje nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qxEd6DOOje .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qxEd6DOOje .collapsed .btn {
  display: flex;
}
.cid-qxEd6DOOje .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qxEd6DOOje .collapsed .navbar-collapse.collapsing,
.cid-qxEd6DOOje .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qxEd6DOOje .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qxEd6DOOje .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qxEd6DOOje .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qxEd6DOOje .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qxEd6DOOje .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qxEd6DOOje .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qxEd6DOOje .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qxEd6DOOje .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qxEd6DOOje .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qxEd6DOOje .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qxEd6DOOje .collapsed button.navbar-toggler {
  display: block;
}
.cid-qxEd6DOOje .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qxEd6DOOje .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qxEd6DOOje .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-qxEd6DOOje .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qxEd6DOOje .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qxEd6DOOje .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-qxEd6DOOje.navbar-expand {
    flex-direction: column;
  }
  .cid-qxEd6DOOje img {
    height: 3.8rem !important;
  }
  .cid-qxEd6DOOje .btn {
    display: flex;
  }
  .cid-qxEd6DOOje button.navbar-toggler {
    display: block;
  }
  .cid-qxEd6DOOje .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qxEd6DOOje .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qxEd6DOOje .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qxEd6DOOje .navbar-collapse.collapsing,
  .cid-qxEd6DOOje .navbar-collapse.show {
    display: block !important;
  }
  .cid-qxEd6DOOje .navbar-collapse.collapsing .navbar-nav,
  .cid-qxEd6DOOje .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qxEd6DOOje .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qxEd6DOOje .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qxEd6DOOje .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qxEd6DOOje .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qxEd6DOOje .navbar-collapse.collapsing .navbar-buttons,
  .cid-qxEd6DOOje .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qxEd6DOOje .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qxEd6DOOje .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qxEd6DOOje .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-qxEd6DOOje .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qxEd6DOOje .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qxEd6DOOje .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-qxEd6DOOje .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qxFPaUdtgT .modal-body .close {
  background: #1b1b1b;
}
.cid-qxFPaUdtgT .modal-body .close span {
  font-style: normal;
}
.cid-qxFPaUdtgT .carousel-inner > .active,
.cid-qxFPaUdtgT .carousel-inner > .next,
.cid-qxFPaUdtgT .carousel-inner > .prev {
  display: table;
}
.cid-qxFPaUdtgT .carousel-control .icon-next,
.cid-qxFPaUdtgT .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qxFPaUdtgT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qxFPaUdtgT .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qxFPaUdtgT .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qxFPaUdtgT .boxed-slider > div {
  position: relative;
}
.cid-qxFPaUdtgT .container img {
  width: 100%;
}
.cid-qxFPaUdtgT .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-qxFPaUdtgT .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qxFPaUdtgT .mbr-table-cell {
  padding: 0;
}
.cid-qxFPaUdtgT .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qxFPaUdtgT .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qxFPaUdtgT .mbr-overlay {
  z-index: 1;
}
.cid-qxFPaUdtgT .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qxFPaUdtgT .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-qxFPaUdtgT .carousel-item .container {
    width: 100%;
  }
}
.cid-qxFPaUdtgT .carousel-item-next.carousel-item-left,
.cid-qxFPaUdtgT .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qxFPaUdtgT .active.carousel-item-right,
.cid-qxFPaUdtgT .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qxFPaUdtgT .active.carousel-item-left,
.cid-qxFPaUdtgT .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qxFPaUdtgT .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-qxFPaUdtgT .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qxFPaUdtgT .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qxFPaUdtgT .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-qxFPaUdtgT .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qxFPaUdtgT .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qxFPaUdtgT .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-qxFPaUdtgT .mbr-slider .carousel-indicators li.active,
.cid-qxFPaUdtgT .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-qxFPaUdtgT .mbr-slider .carousel-indicators li::after,
.cid-qxFPaUdtgT .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-qxFPaUdtgT .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qxFPaUdtgT .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qxFPaUdtgT .mbr-slider > .container img {
  width: 100%;
}
.cid-qxFPaUdtgT .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qxFPaUdtgT .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qxFPaUdtgT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qxFPaUdtgT .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qxFPaUdtgT .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-qxFPaUdtgT .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-qxFPaUdtgT .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qxFPaUdtgT .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qxFPaUdtgT .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qxFPaUdtgT .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qxFPaUdtgT .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qxFPaUdtgT .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qxFPaUdtgT .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qxEd2LmgKJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-qxEd2LmgKJ h2 {
  text-align: center;
}
.cid-qxEd2LmgKJ h3 {
  text-align: center;
  font-weight: 300;
}
.cid-qxEd2LmgKJ p {
  color: #767676;
}
.cid-qxEd2LmgKJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-qxEd2LmgKJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-qxEd2LmgKJ .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-qxEd2LmgKJ .mbr-section-subtitle {
  color: #767676;
}
.cid-qxEd2LmgKJ .card-title {
  font-weight: 500;
}
.cid-qxEd2LmgKJ .card-img {
  text-align: inherit;
}
.cid-qxEd2LmgKJ .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-qxEd2LmgKJ .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qxEd2LmgKJ .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qxEd2LmgKJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-qxEd2LmgKJ .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-qxEd2LmgKJ .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-qxEd2LmgKJ .mbr-section-title {
  color: #232323;
}
.cid-sWgZx0usJr {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/forest-4331646-1920-1920x1080.jpg");
}
.cid-sWgZyuOU5N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sWgZyuOU5N p {
  color: #767676;
}
.cid-sWgZyuOU5N .item:focus,
.cid-sWgZyuOU5N span:focus {
  outline: none;
}
.cid-sWgZyuOU5N .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-sWgZyuOU5N .item-wrapper {
  position: relative;
}
.cid-sWgZyuOU5N .item-btn,
.cid-sWgZyuOU5N h4,
.cid-sWgZyuOU5N h5 {
  margin: 0;
}
.cid-sWgZyuOU5N .item-content {
  padding-top: 2rem;
}
.cid-svGpuNMKJo {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svGpuNMKJo .mbr-section-subtitle {
  color: #767676;
}
.cid-svGpzZ9gSC {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svGpzZ9gSC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svGpzZ9gSC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svGpzZ9gSC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svGpzZ9gSC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svGpzZ9gSC .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-svGpzZ9gSC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svGpzZ9gSC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svGpzZ9gSC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svGpzZ9gSC .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-svGpwjV5Z6 {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #f3f4f6;
}
.cid-svGpwjV5Z6 .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-svGpwjV5Z6 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-svGpwjV5Z6 .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-svGpwjV5Z6 .mbr-figure,
  .cid-svGpwjV5Z6 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rf7H0IHsPr {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #859b84;
}
.cid-rf7H0IHsPr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rf7H0IHsPr .btn {
  margin: 0 0 .5rem 0;
}
.cid-rf7H0IHsPr H2 {
  color: #efefef;
}
.cid-rf7WX2S79T {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rf7WX2S79T .mbr-text,
.cid-rf7WX2S79T blockquote {
  color: #767676;
}
.cid-tu2fCj67MI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu2fCj67MI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tu2fCj67MI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tu2fCj67MI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tu2fCj67MI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tu2fCj67MI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tu2fCj67MI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(to left, rgba(85, 67, 70, 0.85), rgba(69, 80, 91, 0.85)) !important;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qxEPr9vt0A {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-qxEPr9vt0A .mbr-text {
  color: #767676;
}
.cid-qxEPr9vt0A h4 {
  text-align: center;
}
.cid-qxEPr9vt0A p {
  text-align: center;
}
.cid-qxEPr9vt0A .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-qxFrFYIEW6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #859b84, #859b84);
}
.cid-qxFrFYIEW6 .btn {
  margin: 0 0 .5rem 0;
}
.cid-qxFrFYIEW6 H2 {
  color: #ffffff;
}
.cid-qxFl8kanYa {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-qxFl8kanYa h2 {
  text-align: left;
}
.cid-qxFl8kanYa h4 {
  text-align: left;
  font-weight: 500;
}
.cid-qxFl8kanYa p {
  color: #767676;
  text-align: left;
}
.cid-qxFl8kanYa .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-qxFl8kanYa .media {
  margin: initial;
  align-items: center;
}
.cid-qxFl8kanYa .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-qxFl8kanYa .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-qxFl8kanYa .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-qxFl8kanYa .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qxFl8kanYa .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-qxFl8kanYa .card-img span {
    font-size: 40px !important;
  }
}
.cid-qxFl8kanYa B {
  color: #232323;
}
.cid-qxFhUN8ECi {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-qxFhUN8ECi h2 {
  text-align: left;
}
.cid-qxFhUN8ECi h4 {
  text-align: left;
  font-weight: 500;
}
.cid-qxFhUN8ECi p {
  color: #767676;
  text-align: left;
}
.cid-qxFhUN8ECi .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-qxFhUN8ECi .media {
  margin: initial;
  align-items: center;
}
.cid-qxFhUN8ECi .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-qxFhUN8ECi .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-qxFhUN8ECi .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-qxFhUN8ECi .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-qxFhUN8ECi .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-qxFhUN8ECi .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-qxFhUN8ECi .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-qxFhUN8ECi .card-img span {
    font-size: 40px !important;
  }
}
.cid-qxFhUN8ECi B {
  color: #e43a24;
}
.cid-qxFhUN8ECi H4 {
  color: #e43a24;
}
.cid-qxFhUN8ECi .mbr-text B {
  color: #313030;
}
.cid-sWgZBZRa2b {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sWgZBZRa2b .mbr-section-subtitle {
  color: #767676;
}
.cid-sWgZBZRa2b .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sWgZBZRa2b .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-sWgZBZRa2b .team-item .item-image img {
  width: 100%;
}
.cid-sWgZBZRa2b .team-item .item-name p {
  margin-bottom: 0;
}
.cid-sWgZBZRa2b .team-item .item-role p {
  margin-bottom: 0;
}
.cid-sWgZBZRa2b .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sWgZBZRa2b .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-sWgZBZRa2b .team-item .item-caption {
  background: #cccccc;
}
.cid-qxF6sIUPeO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-qxF6sIUPeO .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-rf98BPyOlf .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rf98BPyOlf .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rf98BPyOlf a {
  font-style: normal;
}
.cid-rf98BPyOlf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rf98BPyOlf .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rf98BPyOlf .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rf98BPyOlf .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rf98BPyOlf .menu-logo {
  margin-right: auto;
}
.cid-rf98BPyOlf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rf98BPyOlf .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-rf98BPyOlf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rf98BPyOlf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rf98BPyOlf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rf98BPyOlf .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rf98BPyOlf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rf98BPyOlf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rf98BPyOlf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rf98BPyOlf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rf98BPyOlf .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rf98BPyOlf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rf98BPyOlf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rf98BPyOlf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rf98BPyOlf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rf98BPyOlf .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-rf98BPyOlf .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rf98BPyOlf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rf98BPyOlf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rf98BPyOlf .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rf98BPyOlf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rf98BPyOlf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rf98BPyOlf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rf98BPyOlf button.navbar-toggler:focus {
  outline: none;
}
.cid-rf98BPyOlf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rf98BPyOlf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rf98BPyOlf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rf98BPyOlf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rf98BPyOlf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rf98BPyOlf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf98BPyOlf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rf98BPyOlf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rf98BPyOlf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf98BPyOlf .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rf98BPyOlf .collapsed .btn {
  display: flex;
}
.cid-rf98BPyOlf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rf98BPyOlf .collapsed .navbar-collapse.collapsing,
.cid-rf98BPyOlf .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rf98BPyOlf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rf98BPyOlf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rf98BPyOlf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rf98BPyOlf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rf98BPyOlf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rf98BPyOlf .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rf98BPyOlf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rf98BPyOlf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rf98BPyOlf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rf98BPyOlf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rf98BPyOlf .collapsed button.navbar-toggler {
  display: block;
}
.cid-rf98BPyOlf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rf98BPyOlf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rf98BPyOlf .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-rf98BPyOlf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rf98BPyOlf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rf98BPyOlf .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-rf98BPyOlf.navbar-expand {
    flex-direction: column;
  }
  .cid-rf98BPyOlf img {
    height: 3.8rem !important;
  }
  .cid-rf98BPyOlf .btn {
    display: flex;
  }
  .cid-rf98BPyOlf button.navbar-toggler {
    display: block;
  }
  .cid-rf98BPyOlf .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rf98BPyOlf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rf98BPyOlf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rf98BPyOlf .navbar-collapse.collapsing,
  .cid-rf98BPyOlf .navbar-collapse.show {
    display: block !important;
  }
  .cid-rf98BPyOlf .navbar-collapse.collapsing .navbar-nav,
  .cid-rf98BPyOlf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rf98BPyOlf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rf98BPyOlf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rf98BPyOlf .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rf98BPyOlf .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rf98BPyOlf .navbar-collapse.collapsing .navbar-buttons,
  .cid-rf98BPyOlf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rf98BPyOlf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rf98BPyOlf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rf98BPyOlf .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-rf98BPyOlf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rf98BPyOlf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rf98BPyOlf .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-rf98BPyOlf .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rf98BQTlHK .modal-body .close {
  background: #1b1b1b;
}
.cid-rf98BQTlHK .modal-body .close span {
  font-style: normal;
}
.cid-rf98BQTlHK .carousel-inner > .active,
.cid-rf98BQTlHK .carousel-inner > .next,
.cid-rf98BQTlHK .carousel-inner > .prev {
  display: table;
}
.cid-rf98BQTlHK .carousel-control .icon-next,
.cid-rf98BQTlHK .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rf98BQTlHK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rf98BQTlHK .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rf98BQTlHK .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rf98BQTlHK .boxed-slider > div {
  position: relative;
}
.cid-rf98BQTlHK .container img {
  width: 100%;
}
.cid-rf98BQTlHK .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rf98BQTlHK .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rf98BQTlHK .mbr-table-cell {
  padding: 0;
}
.cid-rf98BQTlHK .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rf98BQTlHK .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rf98BQTlHK .mbr-overlay {
  z-index: 1;
}
.cid-rf98BQTlHK .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rf98BQTlHK .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rf98BQTlHK .carousel-item .container {
    width: 100%;
  }
}
.cid-rf98BQTlHK .carousel-item-next.carousel-item-left,
.cid-rf98BQTlHK .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rf98BQTlHK .active.carousel-item-right,
.cid-rf98BQTlHK .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rf98BQTlHK .active.carousel-item-left,
.cid-rf98BQTlHK .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rf98BQTlHK .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rf98BQTlHK .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rf98BQTlHK .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rf98BQTlHK .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rf98BQTlHK .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rf98BQTlHK .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rf98BQTlHK .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rf98BQTlHK .mbr-slider .carousel-indicators li.active,
.cid-rf98BQTlHK .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rf98BQTlHK .mbr-slider .carousel-indicators li::after,
.cid-rf98BQTlHK .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rf98BQTlHK .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rf98BQTlHK .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rf98BQTlHK .mbr-slider > .container img {
  width: 100%;
}
.cid-rf98BQTlHK .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rf98BQTlHK .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rf98BQTlHK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rf98BQTlHK .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rf98BQTlHK .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rf98BQTlHK .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rf98BQTlHK .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rf98BQTlHK .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rf98BQTlHK .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rf98BQTlHK .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rf98BQTlHK .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rf98BQTlHK .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rf98BQTlHK .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rf98BQTlHK P {
  color: #767676;
}
.cid-rf98BRPqvx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98BRPqvx h2 {
  text-align: center;
}
.cid-rf98BRPqvx h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rf98BRPqvx p {
  color: #767676;
}
.cid-rf98BRPqvx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rf98BRPqvx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rf98BRPqvx .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rf98BRPqvx .mbr-section-subtitle {
  color: #767676;
}
.cid-rf98BRPqvx .card-title {
  font-weight: 500;
}
.cid-rf98BRPqvx .card-img {
  text-align: inherit;
}
.cid-rf98BRPqvx .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf98BRPqvx .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rf98BRPqvx .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rf98BRPqvx .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-rf98BRPqvx .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rf98BRPqvx .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-sWh5QJUcod {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/forest-4331646-1920-1920x1080.jpg");
}
.cid-sWh5RQbPMZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sWh5RQbPMZ p {
  color: #767676;
}
.cid-sWh5RQbPMZ .item:focus,
.cid-sWh5RQbPMZ span:focus {
  outline: none;
}
.cid-sWh5RQbPMZ .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-sWh5RQbPMZ .item-wrapper {
  position: relative;
}
.cid-sWh5RQbPMZ .item-btn,
.cid-sWh5RQbPMZ h4,
.cid-sWh5RQbPMZ h5 {
  margin: 0;
}
.cid-sWh5RQbPMZ .item-content {
  padding-top: 2rem;
}
.cid-svGA1hcSpl {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svGA1hcSpl .mbr-section-subtitle {
  color: #767676;
}
.cid-svGA27agnu {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svGA27agnu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svGA27agnu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svGA27agnu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svGA27agnu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svGA27agnu .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-svGA27agnu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svGA27agnu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svGA27agnu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svGA27agnu .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-svGA3yk7Tl {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #f3f4f6;
}
.cid-svGA3yk7Tl .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-svGA3yk7Tl .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-svGA3yk7Tl .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-svGA3yk7Tl .mbr-figure,
  .cid-svGA3yk7Tl img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rf98BTfxTA {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #859b84;
}
.cid-rf98BTfxTA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rf98BTfxTA .btn {
  margin: 0 0 .5rem 0;
}
.cid-rf98BTfxTA H2 {
  color: #ffffff;
}
.cid-rf98BUaXoN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rf98BUaXoN .mbr-text,
.cid-rf98BUaXoN blockquote {
  color: #767676;
}
.cid-tu2heJnzW3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu2heJnzW3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tu2heJnzW3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tu2heJnzW3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tu2heJnzW3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tu2heJnzW3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tu2heJnzW3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(to left, rgba(85, 67, 70, 0.85), rgba(69, 80, 91, 0.85)) !important;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rf98BWNp2n {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98BWNp2n .mbr-text {
  color: #767676;
}
.cid-rf98BWNp2n h4 {
  text-align: center;
}
.cid-rf98BWNp2n p {
  text-align: center;
}
.cid-rf98BWNp2n .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rf98BYzIIf {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #859b84, #859b84);
}
.cid-rf98BYzIIf .btn {
  margin: 0 0 .5rem 0;
}
.cid-rf98BYzIIf H2 {
  color: #ffffff;
}
.cid-rf98C0wUHl {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98C0wUHl h2 {
  text-align: left;
}
.cid-rf98C0wUHl h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rf98C0wUHl p {
  color: #767676;
  text-align: left;
}
.cid-rf98C0wUHl .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rf98C0wUHl .media {
  margin: initial;
  align-items: center;
}
.cid-rf98C0wUHl .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rf98C0wUHl .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rf98C0wUHl .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf98C0wUHl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rf98C0wUHl .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rf98C0wUHl .card-img span {
    font-size: 40px !important;
  }
}
.cid-rf98C0wUHl B {
  color: #232323;
}
.cid-rf98C27P8V {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98C27P8V h2 {
  text-align: left;
}
.cid-rf98C27P8V h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rf98C27P8V p {
  color: #767676;
  text-align: left;
}
.cid-rf98C27P8V .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rf98C27P8V .media {
  margin: initial;
  align-items: center;
}
.cid-rf98C27P8V .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rf98C27P8V .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rf98C27P8V .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf98C27P8V .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-rf98C27P8V .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-rf98C27P8V .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-rf98C27P8V .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-rf98C27P8V .card-img span {
    font-size: 40px !important;
  }
}
.cid-rf98C27P8V B {
  color: #e43a24;
}
.cid-rf98C27P8V H4 {
  color: #e43a24;
}
.cid-rf98C27P8V .mbr-text B {
  color: #313030;
}
.cid-sWh5VNS5aq {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sWh5VNS5aq .mbr-section-subtitle {
  color: #767676;
}
.cid-sWh5VNS5aq .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sWh5VNS5aq .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-sWh5VNS5aq .team-item .item-image img {
  width: 100%;
}
.cid-sWh5VNS5aq .team-item .item-name p {
  margin-bottom: 0;
}
.cid-sWh5VNS5aq .team-item .item-role p {
  margin-bottom: 0;
}
.cid-sWh5VNS5aq .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sWh5VNS5aq .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-sWh5VNS5aq .team-item .item-caption {
  background: #cccccc;
}
.cid-rf98C528gP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #859b84;
}
.cid-rf98C528gP .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-rf98uRCW8b .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rf98uRCW8b .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rf98uRCW8b a {
  font-style: normal;
}
.cid-rf98uRCW8b .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rf98uRCW8b .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rf98uRCW8b .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rf98uRCW8b .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rf98uRCW8b .menu-logo {
  margin-right: auto;
}
.cid-rf98uRCW8b .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rf98uRCW8b .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-rf98uRCW8b .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rf98uRCW8b .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rf98uRCW8b .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rf98uRCW8b .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rf98uRCW8b .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rf98uRCW8b .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rf98uRCW8b .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rf98uRCW8b .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rf98uRCW8b .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rf98uRCW8b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rf98uRCW8b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rf98uRCW8b .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rf98uRCW8b .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rf98uRCW8b .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-rf98uRCW8b .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rf98uRCW8b .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rf98uRCW8b .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rf98uRCW8b .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rf98uRCW8b .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rf98uRCW8b .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rf98uRCW8b button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rf98uRCW8b button.navbar-toggler:focus {
  outline: none;
}
.cid-rf98uRCW8b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rf98uRCW8b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rf98uRCW8b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rf98uRCW8b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rf98uRCW8b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rf98uRCW8b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf98uRCW8b nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rf98uRCW8b nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rf98uRCW8b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf98uRCW8b .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rf98uRCW8b .collapsed .btn {
  display: flex;
}
.cid-rf98uRCW8b .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rf98uRCW8b .collapsed .navbar-collapse.collapsing,
.cid-rf98uRCW8b .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rf98uRCW8b .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rf98uRCW8b .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rf98uRCW8b .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rf98uRCW8b .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rf98uRCW8b .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rf98uRCW8b .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rf98uRCW8b .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rf98uRCW8b .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rf98uRCW8b .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rf98uRCW8b .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rf98uRCW8b .collapsed button.navbar-toggler {
  display: block;
}
.cid-rf98uRCW8b .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rf98uRCW8b .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rf98uRCW8b .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-rf98uRCW8b .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rf98uRCW8b .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rf98uRCW8b .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-rf98uRCW8b.navbar-expand {
    flex-direction: column;
  }
  .cid-rf98uRCW8b img {
    height: 3.8rem !important;
  }
  .cid-rf98uRCW8b .btn {
    display: flex;
  }
  .cid-rf98uRCW8b button.navbar-toggler {
    display: block;
  }
  .cid-rf98uRCW8b .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rf98uRCW8b .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rf98uRCW8b .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rf98uRCW8b .navbar-collapse.collapsing,
  .cid-rf98uRCW8b .navbar-collapse.show {
    display: block !important;
  }
  .cid-rf98uRCW8b .navbar-collapse.collapsing .navbar-nav,
  .cid-rf98uRCW8b .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rf98uRCW8b .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rf98uRCW8b .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rf98uRCW8b .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rf98uRCW8b .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rf98uRCW8b .navbar-collapse.collapsing .navbar-buttons,
  .cid-rf98uRCW8b .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rf98uRCW8b .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rf98uRCW8b .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rf98uRCW8b .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-rf98uRCW8b .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rf98uRCW8b .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rf98uRCW8b .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-rf98uRCW8b .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rf98uVuE4n .modal-body .close {
  background: #1b1b1b;
}
.cid-rf98uVuE4n .modal-body .close span {
  font-style: normal;
}
.cid-rf98uVuE4n .carousel-inner > .active,
.cid-rf98uVuE4n .carousel-inner > .next,
.cid-rf98uVuE4n .carousel-inner > .prev {
  display: table;
}
.cid-rf98uVuE4n .carousel-control .icon-next,
.cid-rf98uVuE4n .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rf98uVuE4n .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rf98uVuE4n .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rf98uVuE4n .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rf98uVuE4n .boxed-slider > div {
  position: relative;
}
.cid-rf98uVuE4n .container img {
  width: 100%;
}
.cid-rf98uVuE4n .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rf98uVuE4n .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rf98uVuE4n .mbr-table-cell {
  padding: 0;
}
.cid-rf98uVuE4n .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rf98uVuE4n .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rf98uVuE4n .mbr-overlay {
  z-index: 1;
}
.cid-rf98uVuE4n .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rf98uVuE4n .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rf98uVuE4n .carousel-item .container {
    width: 100%;
  }
}
.cid-rf98uVuE4n .carousel-item-next.carousel-item-left,
.cid-rf98uVuE4n .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rf98uVuE4n .active.carousel-item-right,
.cid-rf98uVuE4n .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rf98uVuE4n .active.carousel-item-left,
.cid-rf98uVuE4n .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rf98uVuE4n .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rf98uVuE4n .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rf98uVuE4n .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rf98uVuE4n .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rf98uVuE4n .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rf98uVuE4n .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rf98uVuE4n .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rf98uVuE4n .mbr-slider .carousel-indicators li.active,
.cid-rf98uVuE4n .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rf98uVuE4n .mbr-slider .carousel-indicators li::after,
.cid-rf98uVuE4n .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rf98uVuE4n .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rf98uVuE4n .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rf98uVuE4n .mbr-slider > .container img {
  width: 100%;
}
.cid-rf98uVuE4n .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rf98uVuE4n .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rf98uVuE4n .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rf98uVuE4n .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rf98uVuE4n .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rf98uVuE4n .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rf98uVuE4n .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rf98uVuE4n .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rf98uVuE4n .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rf98uVuE4n .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rf98uVuE4n .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rf98uVuE4n .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rf98uVuE4n .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rf98uVuE4n P {
  color: #767676;
}
.cid-rf98v42HQh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98v42HQh h2 {
  text-align: center;
}
.cid-rf98v42HQh h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rf98v42HQh p {
  color: #767676;
}
.cid-rf98v42HQh .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rf98v42HQh .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rf98v42HQh .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rf98v42HQh .mbr-section-subtitle {
  color: #767676;
}
.cid-rf98v42HQh .card-title {
  font-weight: 500;
}
.cid-rf98v42HQh .card-img {
  text-align: inherit;
}
.cid-rf98v42HQh .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf98v42HQh .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rf98v42HQh .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rf98v42HQh .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-rf98v42HQh .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rf98v42HQh .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-sWhiRGm0pR {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/forest-4331646-1920-1920x1080.jpg");
}
.cid-sWhiSBBS2O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sWhiSBBS2O p {
  color: #767676;
}
.cid-sWhiSBBS2O .item:focus,
.cid-sWhiSBBS2O span:focus {
  outline: none;
}
.cid-sWhiSBBS2O .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-sWhiSBBS2O .item-wrapper {
  position: relative;
}
.cid-sWhiSBBS2O .item-btn,
.cid-sWhiSBBS2O h4,
.cid-sWhiSBBS2O h5 {
  margin: 0;
}
.cid-sWhiSBBS2O .item-content {
  padding-top: 2rem;
}
.cid-svH6mcLnx8 {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svH6mcLnx8 .mbr-section-subtitle {
  color: #767676;
}
.cid-svH6n30y17 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svH6n30y17 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svH6n30y17 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svH6n30y17 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svH6n30y17 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svH6n30y17 .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-svH6n30y17 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svH6n30y17 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svH6n30y17 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svH6n30y17 .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-svH6ogaW5U {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #f3f4f6;
}
.cid-svH6ogaW5U .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-svH6ogaW5U .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-svH6ogaW5U .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-svH6ogaW5U .mbr-figure,
  .cid-svH6ogaW5U img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rf98v5YLLu {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #859b84;
}
.cid-rf98v5YLLu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rf98v5YLLu .btn {
  margin: 0 0 .5rem 0;
}
.cid-rf98v5YLLu H2 {
  color: #ffffff;
}
.cid-rf98v6QQ0n {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rf98v6QQ0n .mbr-text,
.cid-rf98v6QQ0n blockquote {
  color: #767676;
}
.cid-tu2ou3WoUq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu2ou3WoUq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tu2ou3WoUq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tu2ou3WoUq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tu2ou3WoUq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tu2ou3WoUq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tu2ou3WoUq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(to left, rgba(85, 67, 70, 0.85), rgba(69, 80, 91, 0.85)) !important;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rf98v9DY21 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98v9DY21 .mbr-text {
  color: #767676;
}
.cid-rf98v9DY21 h4 {
  text-align: center;
}
.cid-rf98v9DY21 p {
  text-align: center;
}
.cid-rf98v9DY21 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rf98vbhhnQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #859b84, #859b84);
}
.cid-rf98vbhhnQ .btn {
  margin: 0 0 .5rem 0;
}
.cid-rf98vbhhnQ H2 {
  color: #ffffff;
}
.cid-rf98vdduUJ {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98vdduUJ h2 {
  text-align: left;
}
.cid-rf98vdduUJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rf98vdduUJ p {
  color: #767676;
  text-align: left;
}
.cid-rf98vdduUJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rf98vdduUJ .media {
  margin: initial;
  align-items: center;
}
.cid-rf98vdduUJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rf98vdduUJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rf98vdduUJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf98vdduUJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rf98vdduUJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rf98vdduUJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-rf98vdduUJ B {
  color: #232323;
}
.cid-rf98vePrG1 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98vePrG1 h2 {
  text-align: left;
}
.cid-rf98vePrG1 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rf98vePrG1 p {
  color: #767676;
  text-align: left;
}
.cid-rf98vePrG1 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rf98vePrG1 .media {
  margin: initial;
  align-items: center;
}
.cid-rf98vePrG1 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rf98vePrG1 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rf98vePrG1 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf98vePrG1 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-rf98vePrG1 .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-rf98vePrG1 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-rf98vePrG1 .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-rf98vePrG1 .card-img span {
    font-size: 40px !important;
  }
}
.cid-rf98vePrG1 B {
  color: #e43a24;
}
.cid-rf98vePrG1 H4 {
  color: #e43a24;
}
.cid-rf98vePrG1 .mbr-text B {
  color: #313030;
}
.cid-sWhiVt4nEu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sWhiVt4nEu .mbr-section-subtitle {
  color: #767676;
}
.cid-sWhiVt4nEu .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sWhiVt4nEu .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-sWhiVt4nEu .team-item .item-image img {
  width: 100%;
}
.cid-sWhiVt4nEu .team-item .item-name p {
  margin-bottom: 0;
}
.cid-sWhiVt4nEu .team-item .item-role p {
  margin-bottom: 0;
}
.cid-sWhiVt4nEu .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sWhiVt4nEu .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-sWhiVt4nEu .team-item .item-caption {
  background: #cccccc;
}
.cid-rf98vhUHDR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-rf98vhUHDR .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-rf98on0SgV .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rf98on0SgV .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rf98on0SgV a {
  font-style: normal;
}
.cid-rf98on0SgV .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rf98on0SgV .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rf98on0SgV .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rf98on0SgV .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rf98on0SgV .menu-logo {
  margin-right: auto;
}
.cid-rf98on0SgV .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rf98on0SgV .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-rf98on0SgV .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rf98on0SgV .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rf98on0SgV .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rf98on0SgV .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rf98on0SgV .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rf98on0SgV .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rf98on0SgV .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rf98on0SgV .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rf98on0SgV .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rf98on0SgV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rf98on0SgV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rf98on0SgV .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rf98on0SgV .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rf98on0SgV .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-rf98on0SgV .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rf98on0SgV .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rf98on0SgV .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rf98on0SgV .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rf98on0SgV .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rf98on0SgV .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rf98on0SgV button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rf98on0SgV button.navbar-toggler:focus {
  outline: none;
}
.cid-rf98on0SgV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rf98on0SgV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rf98on0SgV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rf98on0SgV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rf98on0SgV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rf98on0SgV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf98on0SgV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rf98on0SgV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rf98on0SgV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf98on0SgV .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rf98on0SgV .collapsed .btn {
  display: flex;
}
.cid-rf98on0SgV .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rf98on0SgV .collapsed .navbar-collapse.collapsing,
.cid-rf98on0SgV .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rf98on0SgV .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rf98on0SgV .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rf98on0SgV .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rf98on0SgV .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rf98on0SgV .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rf98on0SgV .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rf98on0SgV .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rf98on0SgV .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rf98on0SgV .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rf98on0SgV .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rf98on0SgV .collapsed button.navbar-toggler {
  display: block;
}
.cid-rf98on0SgV .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rf98on0SgV .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rf98on0SgV .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-rf98on0SgV .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rf98on0SgV .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rf98on0SgV .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-rf98on0SgV.navbar-expand {
    flex-direction: column;
  }
  .cid-rf98on0SgV img {
    height: 3.8rem !important;
  }
  .cid-rf98on0SgV .btn {
    display: flex;
  }
  .cid-rf98on0SgV button.navbar-toggler {
    display: block;
  }
  .cid-rf98on0SgV .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rf98on0SgV .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rf98on0SgV .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rf98on0SgV .navbar-collapse.collapsing,
  .cid-rf98on0SgV .navbar-collapse.show {
    display: block !important;
  }
  .cid-rf98on0SgV .navbar-collapse.collapsing .navbar-nav,
  .cid-rf98on0SgV .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rf98on0SgV .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rf98on0SgV .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rf98on0SgV .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rf98on0SgV .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rf98on0SgV .navbar-collapse.collapsing .navbar-buttons,
  .cid-rf98on0SgV .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rf98on0SgV .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rf98on0SgV .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rf98on0SgV .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-rf98on0SgV .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rf98on0SgV .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rf98on0SgV .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-rf98on0SgV .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rf98op46x0 .modal-body .close {
  background: #1b1b1b;
}
.cid-rf98op46x0 .modal-body .close span {
  font-style: normal;
}
.cid-rf98op46x0 .carousel-inner > .active,
.cid-rf98op46x0 .carousel-inner > .next,
.cid-rf98op46x0 .carousel-inner > .prev {
  display: table;
}
.cid-rf98op46x0 .carousel-control .icon-next,
.cid-rf98op46x0 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rf98op46x0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rf98op46x0 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rf98op46x0 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rf98op46x0 .boxed-slider > div {
  position: relative;
}
.cid-rf98op46x0 .container img {
  width: 100%;
}
.cid-rf98op46x0 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rf98op46x0 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rf98op46x0 .mbr-table-cell {
  padding: 0;
}
.cid-rf98op46x0 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rf98op46x0 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rf98op46x0 .mbr-overlay {
  z-index: 1;
}
.cid-rf98op46x0 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rf98op46x0 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rf98op46x0 .carousel-item .container {
    width: 100%;
  }
}
.cid-rf98op46x0 .carousel-item-next.carousel-item-left,
.cid-rf98op46x0 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rf98op46x0 .active.carousel-item-right,
.cid-rf98op46x0 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rf98op46x0 .active.carousel-item-left,
.cid-rf98op46x0 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rf98op46x0 .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rf98op46x0 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rf98op46x0 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rf98op46x0 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rf98op46x0 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rf98op46x0 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rf98op46x0 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rf98op46x0 .mbr-slider .carousel-indicators li.active,
.cid-rf98op46x0 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rf98op46x0 .mbr-slider .carousel-indicators li::after,
.cid-rf98op46x0 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rf98op46x0 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rf98op46x0 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rf98op46x0 .mbr-slider > .container img {
  width: 100%;
}
.cid-rf98op46x0 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rf98op46x0 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rf98op46x0 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rf98op46x0 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rf98op46x0 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rf98op46x0 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rf98op46x0 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rf98op46x0 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rf98op46x0 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rf98op46x0 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rf98op46x0 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rf98op46x0 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rf98op46x0 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rf98opW4KL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98opW4KL h2 {
  text-align: center;
}
.cid-rf98opW4KL h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rf98opW4KL p {
  color: #767676;
}
.cid-rf98opW4KL .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rf98opW4KL .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rf98opW4KL .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rf98opW4KL .mbr-section-subtitle {
  color: #767676;
}
.cid-rf98opW4KL .card-title {
  font-weight: 500;
}
.cid-rf98opW4KL .card-img {
  text-align: inherit;
}
.cid-rf98opW4KL .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf98opW4KL .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rf98opW4KL .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rf98opW4KL .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-rf98opW4KL .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rf98opW4KL .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-sWhncyh5zv {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/forest-4331646-1920-1920x1080.jpg");
}
.cid-sWhndz4CEM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sWhndz4CEM p {
  color: #767676;
}
.cid-sWhndz4CEM .item:focus,
.cid-sWhndz4CEM span:focus {
  outline: none;
}
.cid-sWhndz4CEM .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-sWhndz4CEM .item-wrapper {
  position: relative;
}
.cid-sWhndz4CEM .item-btn,
.cid-sWhndz4CEM h4,
.cid-sWhndz4CEM h5 {
  margin: 0;
}
.cid-sWhndz4CEM .item-content {
  padding-top: 2rem;
}
.cid-svHgRMj5tU {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svHgRMj5tU .mbr-section-subtitle {
  color: #767676;
}
.cid-svHgSC8NDE {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svHgSC8NDE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHgSC8NDE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHgSC8NDE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHgSC8NDE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHgSC8NDE .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-svHgSC8NDE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHgSC8NDE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHgSC8NDE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHgSC8NDE .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-svHgTsm4ty {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #f3f4f6;
}
.cid-svHgTsm4ty .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-svHgTsm4ty .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-svHgTsm4ty .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-svHgTsm4ty .mbr-figure,
  .cid-svHgTsm4ty img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rf98orepvI {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #859b84;
}
.cid-rf98orepvI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rf98orepvI .btn {
  margin: 0 0 .5rem 0;
}
.cid-rf98orepvI H2 {
  color: #ffffff;
}
.cid-rf98oseXfF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rf98oseXfF .mbr-text,
.cid-rf98oseXfF blockquote {
  color: #767676;
}
.cid-tu2p53GiSd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu2p53GiSd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tu2p53GiSd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tu2p53GiSd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tu2p53GiSd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tu2p53GiSd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tu2p53GiSd .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(to left, rgba(85, 67, 70, 0.85), rgba(69, 80, 91, 0.85)) !important;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rf98owf1X9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98owf1X9 .mbr-text {
  color: #767676;
}
.cid-rf98owf1X9 h4 {
  text-align: center;
}
.cid-rf98owf1X9 p {
  text-align: center;
}
.cid-rf98owf1X9 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rf98oy4Nfb {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #859b84, #859b84);
}
.cid-rf98oy4Nfb .btn {
  margin: 0 0 .5rem 0;
}
.cid-rf98oy4Nfb H2 {
  color: #ffffff;
}
.cid-rf98ozSHsm {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98ozSHsm h2 {
  text-align: left;
}
.cid-rf98ozSHsm h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rf98ozSHsm p {
  color: #767676;
  text-align: left;
}
.cid-rf98ozSHsm .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rf98ozSHsm .media {
  margin: initial;
  align-items: center;
}
.cid-rf98ozSHsm .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rf98ozSHsm .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rf98ozSHsm .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf98ozSHsm .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rf98ozSHsm .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rf98ozSHsm .card-img span {
    font-size: 40px !important;
  }
}
.cid-rf98ozSHsm B {
  color: #232323;
}
.cid-rf98oBCN1a {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf98oBCN1a h2 {
  text-align: left;
}
.cid-rf98oBCN1a h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rf98oBCN1a p {
  color: #767676;
  text-align: left;
}
.cid-rf98oBCN1a .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rf98oBCN1a .media {
  margin: initial;
  align-items: center;
}
.cid-rf98oBCN1a .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rf98oBCN1a .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rf98oBCN1a .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf98oBCN1a .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-rf98oBCN1a .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-rf98oBCN1a .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-rf98oBCN1a .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-rf98oBCN1a .card-img span {
    font-size: 40px !important;
  }
}
.cid-rf98oBCN1a B {
  color: #e43a24;
}
.cid-rf98oBCN1a H4 {
  color: #e43a24;
}
.cid-rf98oBCN1a .mbr-text B {
  color: #313030;
}
.cid-sWhngRv13g {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sWhngRv13g .mbr-section-subtitle {
  color: #767676;
}
.cid-sWhngRv13g .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sWhngRv13g .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-sWhngRv13g .team-item .item-image img {
  width: 100%;
}
.cid-sWhngRv13g .team-item .item-name p {
  margin-bottom: 0;
}
.cid-sWhngRv13g .team-item .item-role p {
  margin-bottom: 0;
}
.cid-sWhngRv13g .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sWhngRv13g .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-sWhngRv13g .team-item .item-caption {
  background: #cccccc;
}
.cid-rf98oFjm7s {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-rf98oFjm7s .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-rf97fVb8g0 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rf97fVb8g0 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rf97fVb8g0 a {
  font-style: normal;
}
.cid-rf97fVb8g0 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rf97fVb8g0 .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rf97fVb8g0 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rf97fVb8g0 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rf97fVb8g0 .menu-logo {
  margin-right: auto;
}
.cid-rf97fVb8g0 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rf97fVb8g0 .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-rf97fVb8g0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rf97fVb8g0 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rf97fVb8g0 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rf97fVb8g0 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rf97fVb8g0 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rf97fVb8g0 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rf97fVb8g0 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rf97fVb8g0 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rf97fVb8g0 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rf97fVb8g0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rf97fVb8g0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rf97fVb8g0 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rf97fVb8g0 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rf97fVb8g0 .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-rf97fVb8g0 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rf97fVb8g0 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rf97fVb8g0 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rf97fVb8g0 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rf97fVb8g0 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rf97fVb8g0 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rf97fVb8g0 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rf97fVb8g0 button.navbar-toggler:focus {
  outline: none;
}
.cid-rf97fVb8g0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rf97fVb8g0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rf97fVb8g0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rf97fVb8g0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rf97fVb8g0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rf97fVb8g0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf97fVb8g0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rf97fVb8g0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rf97fVb8g0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf97fVb8g0 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rf97fVb8g0 .collapsed .btn {
  display: flex;
}
.cid-rf97fVb8g0 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rf97fVb8g0 .collapsed .navbar-collapse.collapsing,
.cid-rf97fVb8g0 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rf97fVb8g0 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rf97fVb8g0 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rf97fVb8g0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rf97fVb8g0 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rf97fVb8g0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rf97fVb8g0 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rf97fVb8g0 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rf97fVb8g0 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rf97fVb8g0 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rf97fVb8g0 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rf97fVb8g0 .collapsed button.navbar-toggler {
  display: block;
}
.cid-rf97fVb8g0 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rf97fVb8g0 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rf97fVb8g0 .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-rf97fVb8g0 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rf97fVb8g0 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rf97fVb8g0 .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-rf97fVb8g0.navbar-expand {
    flex-direction: column;
  }
  .cid-rf97fVb8g0 img {
    height: 3.8rem !important;
  }
  .cid-rf97fVb8g0 .btn {
    display: flex;
  }
  .cid-rf97fVb8g0 button.navbar-toggler {
    display: block;
  }
  .cid-rf97fVb8g0 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rf97fVb8g0 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rf97fVb8g0 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rf97fVb8g0 .navbar-collapse.collapsing,
  .cid-rf97fVb8g0 .navbar-collapse.show {
    display: block !important;
  }
  .cid-rf97fVb8g0 .navbar-collapse.collapsing .navbar-nav,
  .cid-rf97fVb8g0 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rf97fVb8g0 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rf97fVb8g0 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rf97fVb8g0 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rf97fVb8g0 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rf97fVb8g0 .navbar-collapse.collapsing .navbar-buttons,
  .cid-rf97fVb8g0 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rf97fVb8g0 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rf97fVb8g0 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rf97fVb8g0 .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-rf97fVb8g0 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rf97fVb8g0 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rf97fVb8g0 .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-rf97fVb8g0 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rf97fW9yMv .modal-body .close {
  background: #1b1b1b;
}
.cid-rf97fW9yMv .modal-body .close span {
  font-style: normal;
}
.cid-rf97fW9yMv .carousel-inner > .active,
.cid-rf97fW9yMv .carousel-inner > .next,
.cid-rf97fW9yMv .carousel-inner > .prev {
  display: table;
}
.cid-rf97fW9yMv .carousel-control .icon-next,
.cid-rf97fW9yMv .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rf97fW9yMv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rf97fW9yMv .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rf97fW9yMv .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rf97fW9yMv .boxed-slider > div {
  position: relative;
}
.cid-rf97fW9yMv .container img {
  width: 100%;
}
.cid-rf97fW9yMv .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rf97fW9yMv .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rf97fW9yMv .mbr-table-cell {
  padding: 0;
}
.cid-rf97fW9yMv .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rf97fW9yMv .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rf97fW9yMv .mbr-overlay {
  z-index: 1;
}
.cid-rf97fW9yMv .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rf97fW9yMv .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rf97fW9yMv .carousel-item .container {
    width: 100%;
  }
}
.cid-rf97fW9yMv .carousel-item-next.carousel-item-left,
.cid-rf97fW9yMv .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rf97fW9yMv .active.carousel-item-right,
.cid-rf97fW9yMv .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rf97fW9yMv .active.carousel-item-left,
.cid-rf97fW9yMv .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rf97fW9yMv .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rf97fW9yMv .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rf97fW9yMv .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rf97fW9yMv .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rf97fW9yMv .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rf97fW9yMv .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rf97fW9yMv .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rf97fW9yMv .mbr-slider .carousel-indicators li.active,
.cid-rf97fW9yMv .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rf97fW9yMv .mbr-slider .carousel-indicators li::after,
.cid-rf97fW9yMv .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rf97fW9yMv .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rf97fW9yMv .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rf97fW9yMv .mbr-slider > .container img {
  width: 100%;
}
.cid-rf97fW9yMv .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rf97fW9yMv .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rf97fW9yMv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rf97fW9yMv .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rf97fW9yMv .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rf97fW9yMv .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rf97fW9yMv .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rf97fW9yMv .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rf97fW9yMv .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rf97fW9yMv .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rf97fW9yMv .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rf97fW9yMv .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rf97fW9yMv .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rf97fXk8hC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf97fXk8hC h2 {
  text-align: center;
}
.cid-rf97fXk8hC h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rf97fXk8hC p {
  color: #767676;
}
.cid-rf97fXk8hC .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rf97fXk8hC .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rf97fXk8hC .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rf97fXk8hC .mbr-section-subtitle {
  color: #767676;
}
.cid-rf97fXk8hC .card-title {
  font-weight: 500;
}
.cid-rf97fXk8hC .card-img {
  text-align: inherit;
}
.cid-rf97fXk8hC .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf97fXk8hC .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rf97fXk8hC .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rf97fXk8hC .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-rf97fXk8hC .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rf97fXk8hC .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-svHjFeG31Y {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svHjFeG31Y .mbr-section-subtitle {
  color: #767676;
}
.cid-svHjGg1oi0 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svHjGg1oi0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHjGg1oi0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHjGg1oi0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHjGg1oi0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHjGg1oi0 .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-svHjGg1oi0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHjGg1oi0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHjGg1oi0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHjGg1oi0 .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-svHjGS1vP7 {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #f3f4f6;
}
.cid-svHjGS1vP7 .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-svHjGS1vP7 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-svHjGS1vP7 .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-svHjGS1vP7 .mbr-figure,
  .cid-svHjGS1vP7 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rf97fYI4uY {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-rf97fYI4uY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rf97fYI4uY .btn {
  margin: 0 0 .5rem 0;
}
.cid-rf97fYI4uY H2 {
  color: #e4d295;
}
.cid-rf97fZFCtS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rf97fZFCtS .mbr-text,
.cid-rf97fZFCtS blockquote {
  color: #767676;
}
.cid-tu2GLtulB7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu2GLtulB7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tu2GLtulB7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tu2GLtulB7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tu2GLtulB7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tu2GLtulB7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tu2GLtulB7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(to left, rgba(85, 67, 70, 0.85), rgba(69, 80, 91, 0.85)) !important;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rf97g2yGEe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf97g2yGEe .mbr-text {
  color: #767676;
}
.cid-rf97g2yGEe h4 {
  text-align: center;
}
.cid-rf97g2yGEe p {
  text-align: center;
}
.cid-rf97g2yGEe .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rf97g4lFiY {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #313030, #313030);
}
.cid-rf97g4lFiY .btn {
  margin: 0 0 .5rem 0;
}
.cid-rf97g4lFiY H2 {
  color: #e4d295;
}
.cid-rf97g6DJfs {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf97g6DJfs h2 {
  text-align: left;
}
.cid-rf97g6DJfs h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rf97g6DJfs p {
  color: #767676;
  text-align: left;
}
.cid-rf97g6DJfs .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rf97g6DJfs .media {
  margin: initial;
  align-items: center;
}
.cid-rf97g6DJfs .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rf97g6DJfs .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rf97g6DJfs .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf97g6DJfs .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rf97g6DJfs .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rf97g6DJfs .card-img span {
    font-size: 40px !important;
  }
}
.cid-rf97g6DJfs B {
  color: #232323;
}
.cid-rf97g8qX8I {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf97g8qX8I h2 {
  text-align: left;
}
.cid-rf97g8qX8I h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rf97g8qX8I p {
  color: #767676;
  text-align: left;
}
.cid-rf97g8qX8I .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rf97g8qX8I .media {
  margin: initial;
  align-items: center;
}
.cid-rf97g8qX8I .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rf97g8qX8I .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rf97g8qX8I .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf97g8qX8I .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-rf97g8qX8I .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-rf97g8qX8I .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-rf97g8qX8I .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-rf97g8qX8I .card-img span {
    font-size: 40px !important;
  }
}
.cid-rf97g8qX8I B {
  color: #e43a24;
}
.cid-rf97g8qX8I H4 {
  color: #e43a24;
}
.cid-rf97g8qX8I .mbr-text B {
  color: #313030;
}
.cid-tu3De7IUii {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tu3De7IUii .mbr-section-subtitle {
  color: #767676;
}
.cid-tu3De7IUii .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tu3De7IUii .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-tu3De7IUii .team-item .item-image img {
  width: 100%;
}
.cid-tu3De7IUii .team-item .item-name p {
  margin-bottom: 0;
}
.cid-tu3De7IUii .team-item .item-role p {
  margin-bottom: 0;
}
.cid-tu3De7IUii .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-tu3De7IUii .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-tu3De7IUii .team-item .item-caption {
  background: #cccccc;
}
.cid-rf97gbpbzY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-rf97gbpbzY .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-rf96M5jsGn .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rf96M5jsGn .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rf96M5jsGn a {
  font-style: normal;
}
.cid-rf96M5jsGn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rf96M5jsGn .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rf96M5jsGn .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rf96M5jsGn .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rf96M5jsGn .menu-logo {
  margin-right: auto;
}
.cid-rf96M5jsGn .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rf96M5jsGn .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-rf96M5jsGn .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rf96M5jsGn .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rf96M5jsGn .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rf96M5jsGn .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rf96M5jsGn .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rf96M5jsGn .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rf96M5jsGn .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rf96M5jsGn .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rf96M5jsGn .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rf96M5jsGn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rf96M5jsGn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rf96M5jsGn .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rf96M5jsGn .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rf96M5jsGn .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-rf96M5jsGn .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rf96M5jsGn .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rf96M5jsGn .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rf96M5jsGn .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rf96M5jsGn .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rf96M5jsGn .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rf96M5jsGn button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rf96M5jsGn button.navbar-toggler:focus {
  outline: none;
}
.cid-rf96M5jsGn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rf96M5jsGn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rf96M5jsGn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rf96M5jsGn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rf96M5jsGn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rf96M5jsGn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf96M5jsGn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rf96M5jsGn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rf96M5jsGn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf96M5jsGn .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rf96M5jsGn .collapsed .btn {
  display: flex;
}
.cid-rf96M5jsGn .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rf96M5jsGn .collapsed .navbar-collapse.collapsing,
.cid-rf96M5jsGn .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rf96M5jsGn .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rf96M5jsGn .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rf96M5jsGn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rf96M5jsGn .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rf96M5jsGn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rf96M5jsGn .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rf96M5jsGn .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rf96M5jsGn .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rf96M5jsGn .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rf96M5jsGn .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rf96M5jsGn .collapsed button.navbar-toggler {
  display: block;
}
.cid-rf96M5jsGn .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rf96M5jsGn .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rf96M5jsGn .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-rf96M5jsGn .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rf96M5jsGn .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rf96M5jsGn .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-rf96M5jsGn.navbar-expand {
    flex-direction: column;
  }
  .cid-rf96M5jsGn img {
    height: 3.8rem !important;
  }
  .cid-rf96M5jsGn .btn {
    display: flex;
  }
  .cid-rf96M5jsGn button.navbar-toggler {
    display: block;
  }
  .cid-rf96M5jsGn .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rf96M5jsGn .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rf96M5jsGn .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rf96M5jsGn .navbar-collapse.collapsing,
  .cid-rf96M5jsGn .navbar-collapse.show {
    display: block !important;
  }
  .cid-rf96M5jsGn .navbar-collapse.collapsing .navbar-nav,
  .cid-rf96M5jsGn .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rf96M5jsGn .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rf96M5jsGn .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rf96M5jsGn .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rf96M5jsGn .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rf96M5jsGn .navbar-collapse.collapsing .navbar-buttons,
  .cid-rf96M5jsGn .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rf96M5jsGn .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rf96M5jsGn .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rf96M5jsGn .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-rf96M5jsGn .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rf96M5jsGn .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rf96M5jsGn .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-rf96M5jsGn .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rf96M6Bz2x .modal-body .close {
  background: #1b1b1b;
}
.cid-rf96M6Bz2x .modal-body .close span {
  font-style: normal;
}
.cid-rf96M6Bz2x .carousel-inner > .active,
.cid-rf96M6Bz2x .carousel-inner > .next,
.cid-rf96M6Bz2x .carousel-inner > .prev {
  display: table;
}
.cid-rf96M6Bz2x .carousel-control .icon-next,
.cid-rf96M6Bz2x .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rf96M6Bz2x .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rf96M6Bz2x .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rf96M6Bz2x .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rf96M6Bz2x .boxed-slider > div {
  position: relative;
}
.cid-rf96M6Bz2x .container img {
  width: 100%;
}
.cid-rf96M6Bz2x .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rf96M6Bz2x .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rf96M6Bz2x .mbr-table-cell {
  padding: 0;
}
.cid-rf96M6Bz2x .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rf96M6Bz2x .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rf96M6Bz2x .mbr-overlay {
  z-index: 1;
}
.cid-rf96M6Bz2x .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rf96M6Bz2x .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rf96M6Bz2x .carousel-item .container {
    width: 100%;
  }
}
.cid-rf96M6Bz2x .carousel-item-next.carousel-item-left,
.cid-rf96M6Bz2x .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rf96M6Bz2x .active.carousel-item-right,
.cid-rf96M6Bz2x .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rf96M6Bz2x .active.carousel-item-left,
.cid-rf96M6Bz2x .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rf96M6Bz2x .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rf96M6Bz2x .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rf96M6Bz2x .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rf96M6Bz2x .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rf96M6Bz2x .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rf96M6Bz2x .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rf96M6Bz2x .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rf96M6Bz2x .mbr-slider .carousel-indicators li.active,
.cid-rf96M6Bz2x .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rf96M6Bz2x .mbr-slider .carousel-indicators li::after,
.cid-rf96M6Bz2x .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rf96M6Bz2x .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rf96M6Bz2x .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rf96M6Bz2x .mbr-slider > .container img {
  width: 100%;
}
.cid-rf96M6Bz2x .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rf96M6Bz2x .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rf96M6Bz2x .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rf96M6Bz2x .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rf96M6Bz2x .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rf96M6Bz2x .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rf96M6Bz2x .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rf96M6Bz2x .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rf96M6Bz2x .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rf96M6Bz2x .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rf96M6Bz2x .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rf96M6Bz2x .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rf96M6Bz2x .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rf96M6Bz2x P {
  color: #767676;
}
.cid-rf96M7n7EA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf96M7n7EA h2 {
  text-align: center;
}
.cid-rf96M7n7EA h3 {
  text-align: center;
  font-weight: 300;
}
.cid-rf96M7n7EA p {
  color: #767676;
}
.cid-rf96M7n7EA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rf96M7n7EA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rf96M7n7EA .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rf96M7n7EA .mbr-section-subtitle {
  color: #465052;
}
.cid-rf96M7n7EA .card-title {
  font-weight: 500;
}
.cid-rf96M7n7EA .card-img {
  text-align: inherit;
}
.cid-rf96M7n7EA .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf96M7n7EA .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rf96M7n7EA .mbr-figure {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rf96M7n7EA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .cid-rf96M7n7EA .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-rf96M7n7EA .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-rf96M7n7EA .mbr-section-title {
  color: #859b84;
}
.cid-sWcp9fBaZM {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/forest-4331646-1920-1920x1080.jpg");
}
.cid-sWcpL99wGo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sWcpL99wGo p {
  color: #767676;
}
.cid-sWcpL99wGo .item:focus,
.cid-sWcpL99wGo span:focus {
  outline: none;
}
.cid-sWcpL99wGo .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-sWcpL99wGo .item-wrapper {
  position: relative;
}
.cid-sWcpL99wGo .item-btn,
.cid-sWcpL99wGo h4,
.cid-sWcpL99wGo h5 {
  margin: 0;
}
.cid-sWcpL99wGo .item-content {
  padding-top: 2rem;
}
.cid-svpNLW8yDf {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svpNLW8yDf .mbr-section-subtitle {
  color: #767676;
}
.cid-svoUEld8vr {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svoUEld8vr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svoUEld8vr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svoUEld8vr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svoUEld8vr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svoUEld8vr .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-svoUEld8vr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svoUEld8vr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svoUEld8vr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svoUEld8vr .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-svpOPiPzAR {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #f3f4f6;
}
.cid-svpOPiPzAR .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-svpOPiPzAR .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-svpOPiPzAR .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-svpOPiPzAR .mbr-figure,
  .cid-svpOPiPzAR img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rf96M9bdvu {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #859b84;
}
.cid-rf96M9bdvu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rf96M9bdvu .btn {
  margin: 0 0 .5rem 0;
}
.cid-rf96M9bdvu H2 {
  color: #ffffff;
}
.cid-rf96MaFWhY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rf96MaFWhY .mbr-text,
.cid-rf96MaFWhY blockquote {
  color: #767676;
}
.cid-rf96MbAxzx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rf96MbAxzx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rf96MbAxzx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rf96MbAxzx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rf96MbAxzx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rf96MbAxzx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rf96MbAxzx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(to left, rgba(85, 67, 70, 0.85), rgba(69, 80, 91, 0.85)) !important;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rf96MhANRv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf96MhANRv .mbr-text {
  color: #767676;
}
.cid-rf96MhANRv h4 {
  text-align: center;
}
.cid-rf96MhANRv p {
  text-align: center;
}
.cid-rf96MhANRv .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rf96MjUi9R {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #859b84, #859b84);
}
.cid-rf96MjUi9R .btn {
  margin: 0 0 .5rem 0;
}
.cid-rf96MjUi9R H2 {
  color: #ffffff;
}
.cid-rf96Mlq29t {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf96Mlq29t h2 {
  text-align: left;
}
.cid-rf96Mlq29t h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rf96Mlq29t p {
  color: #767676;
  text-align: left;
}
.cid-rf96Mlq29t .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rf96Mlq29t .media {
  margin: initial;
  align-items: center;
}
.cid-rf96Mlq29t .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rf96Mlq29t .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rf96Mlq29t .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf96Mlq29t .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rf96Mlq29t .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-rf96Mlq29t .card-img span {
    font-size: 40px !important;
  }
}
.cid-rf96Mlq29t B {
  color: #232323;
}
.cid-rf96MmZ1bJ {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-rf96MmZ1bJ h2 {
  text-align: left;
}
.cid-rf96MmZ1bJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rf96MmZ1bJ p {
  color: #767676;
  text-align: left;
}
.cid-rf96MmZ1bJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-rf96MmZ1bJ .media {
  margin: initial;
  align-items: center;
}
.cid-rf96MmZ1bJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rf96MmZ1bJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-rf96MmZ1bJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-rf96MmZ1bJ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
  .cid-rf96MmZ1bJ .media-container-row {
    -webkit-flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .cid-rf96MmZ1bJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    margin-top: 2rem;
  }
  .cid-rf96MmZ1bJ .media-container-row {
    -webkit-flex-direction: column-reverse;
  }
}
@media (max-width: 300px) {
  .cid-rf96MmZ1bJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-rf96MmZ1bJ B {
  color: #e43a24;
}
.cid-rf96MmZ1bJ H4 {
  color: #e43a24;
}
.cid-rf96MmZ1bJ .mbr-text B {
  color: #313030;
}
.cid-sWctel6fbo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sWctel6fbo .mbr-section-subtitle {
  color: #767676;
}
.cid-sWctel6fbo .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sWctel6fbo .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-sWctel6fbo .team-item .item-image img {
  width: 100%;
}
.cid-sWctel6fbo .team-item .item-name p {
  margin-bottom: 0;
}
.cid-sWctel6fbo .team-item .item-role p {
  margin-bottom: 0;
}
.cid-sWctel6fbo .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sWctel6fbo .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-sWctel6fbo .team-item .item-caption {
  background: #cccccc;
}
.cid-rf96MqyWZ7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-rf96MqyWZ7 .media-container-row .mbr-text {
  color: #ffffff;
}
