@import url(https://fonts.googleapis.com/css?family=Cormorant+Garamond:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Be+Vietnam:100,100i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i&display=swap);





body {
  font-family: Be Vietnam;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 11.2rem;
}
.display-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Be Vietnam', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-7 {
  font-family: 'Be Vietnam', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- 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: 4.9rem;
    font-size: calc( 3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.81rem !important;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1.2rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #b1c2c9 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #a15547 !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #b1c2c9 !important;
  border-color: #b1c2c9 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #849faa !important;
  border-color: #849faa !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #849faa !important;
  border-color: #849faa !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #200960 !important;
  border-color: #200960 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #09021a !important;
  border-color: #09021a !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #09021a !important;
  border-color: #09021a !important;
}
.btn-info,
.btn-info:active {
  background-color: #a15547 !important;
  border-color: #a15547 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #6c3930 !important;
  border-color: #6c3930 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #6c3930 !important;
  border-color: #6c3930 !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: #808080 !important;
  border-color: #808080 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !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: #b1c2c9;
  color: #b1c2c9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #b1c2c9;
  border-color: #b1c2c9;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #b1c2c9 !important;
  border-color: #b1c2c9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #200960;
  color: #200960;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #200960;
  border-color: #200960;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #200960 !important;
  border-color: #200960 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #a15547;
  color: #a15547;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #a15547;
  border-color: #a15547;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a15547 !important;
  border-color: #a15547 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #f7ed4a;
  color: #f7ed4a;
}
.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: #808080;
  color: #808080;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #b1a374;
  color: #b1a374;
}
.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: #333333;
  color: #333333;
}
.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;
}
.text-primary {
  color: #b1c2c9 !important;
}
.text-secondary {
  color: #200960 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #a15547 !important;
}
.text-warning {
  color: #808080 !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: #edf1f3 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #3f12bd !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fbf7ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c98f85 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #a15547;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-gallery-filter li.active .btn {
  background-color: #b1c2c9;
  border-color: #b1c2c9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #b1c2c9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d1a097;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0c0c0;
}
.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;
}
blockquote {
  border-color: #b1c2c9;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b1c2c9;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #b1c2c9;
  border-bottom-color: #b1c2c9;
}
.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: #b1c2c9 !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: #200960 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23b1c2c9' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sdoF0qTdpa {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-sdoF0qTdpa H4 {
  color: #000000;
}
.cid-sdoEXs1yU5 {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-sdoEXs1yU5 img {
  width: 120px;
  margin: auto;
}
.cid-sdoEXs1yU5 .card {
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.cid-sdoEXs1yU5 .card img {
  width: 100%;
  max-width: 120px;
}
.cid-sdoEXs1yU5 .mbr-text,
.cid-sdoEXs1yU5 .mbr-section-btn {
  color: #b1c2c9;
  text-align: center;
}
.cid-sdoEXs1yU5 H4 {
  color: #b1c2c9;
}
.cid-sdoEXs1yU5 H3 {
  color: #000000;
}
.cid-s7UiGRZwTh {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7UiGRZwTh .mbr-iconfont {
  font-size: 3rem;
  color: #d58f76;
  margin-right: 1.5rem;
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff;
  margin: auto;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-s7UiGRZwTh .card-wrapper {
    padding: 0 3rem;
  }
}
.cid-s7UiGRZwTh .card-title {
  color: #ffffff;
}
.cid-s7UiGRZwTh .card {
  border-radius: 0;
  width: 100%;
}
.cid-s7UiGRZwTh .card2 {
  border-right: 1px solid #ffffff;
}
.cid-s7UiGRZwTh .card1 {
  border-right: 1px solid #ffffff;
}
.cid-s7UiGRZwTh h4 {
  margin: 0;
}
.cid-s7UiGRZwTh .card-text {
  color: #ffffff;
}
.cid-s7UiGRZwTh .mbr-text {
  color: #200960;
}
@media (max-width: 991px) {
  .cid-s7UiGRZwTh .card {
    border: 0px;
    margin-bottom: 2rem;
  }
}
.cid-sdyK9JaeND {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #1e1e1e;
}
@media (min-width: 1500px) {
  .cid-sdyK9JaeND .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sdyK9JaeND .copyright,
  .cid-sdyK9JaeND .col-lg-1 {
    margin-bottom: 1rem;
  }
}
.cid-sdyK9JaeND .col-lg-1 {
  max-width: fit-content;
  padding: 0;
}
.cid-sdyK9JaeND .mbr-text {
  color: #cccccc;
  text-align: left;
}
.cid-rT64G7yRoO .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-rT64G7yRoO .navbar-fixed-top {
  padding-top: 0;
}
.cid-rT64G7yRoO .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rT64G7yRoO .collapse {
  justify-content: space-between !important;
}
.cid-rT64G7yRoO .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-rT64G7yRoO .mbr-iconfont {
  cursor: pointer;
}
.cid-rT64G7yRoO .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-rT64G7yRoO .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #b1c2c9;
  border-radius: 50%;
}
.cid-rT64G7yRoO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rT64G7yRoO .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-rT64G7yRoO .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rT64G7yRoO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-rT64G7yRoO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rT64G7yRoO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rT64G7yRoO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rT64G7yRoO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rT64G7yRoO .menu-content-top {
  background: #b1c2c9;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-rT64G7yRoO .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-rT64G7yRoO .dropdown-item,
.cid-rT64G7yRoO .nav-link,
.cid-rT64G7yRoO .brand-name {
  font-style: normal;
}
.cid-rT64G7yRoO .dropdown-item:hover,
.cid-rT64G7yRoO .nav-link:hover,
.cid-rT64G7yRoO .brand-name:hover {
  color: #b1c2c9 !important;
}
.cid-rT64G7yRoO .dropdown-menu {
  background-color: #82786e;
}
.cid-rT64G7yRoO .dropdown-item:active {
  background-color: #82786e;
}
.cid-rT64G7yRoO .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-rT64G7yRoO .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rT64G7yRoO .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rT64G7yRoO .content-text {
  margin-bottom: 0;
}
.cid-rT64G7yRoO .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rT64G7yRoO .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #b1c2c9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rT64G7yRoO .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rT64G7yRoO .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rT64G7yRoO .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rT64G7yRoO .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rT64G7yRoO .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rT64G7yRoO .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rT64G7yRoO .nav-dropdown .link {
  font-weight: 400;
}
.cid-rT64G7yRoO .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rT64G7yRoO .content-right-side {
  text-align: center;
}
.cid-rT64G7yRoO .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rT64G7yRoO .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rT64G7yRoO .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-rT64G7yRoO .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-rT64G7yRoO .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-rT64G7yRoO .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rT64G7yRoO .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rT64G7yRoO .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rT64G7yRoO .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rT64G7yRoO .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-rT64G7yRoO .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-rT64G7yRoO .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-rT64G7yRoO .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rT64G7yRoO .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-rT64G7yRoO .navbar {
    display: block;
    padding: 0;
  }
  .cid-rT64G7yRoO .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rT64G7yRoO .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rT64G7yRoO .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-rT64G7yRoO .navbar-toggler {
    display: none;
  }
}
.cid-rT64G7yRoO .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-rT64G7yRoO .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rT64G7yRoO .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rT64G7yRoO .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rT64G7yRoO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rT64G7yRoO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rT64G7yRoO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rT64G7yRoO .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rT64G7yRoO .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rT64G7yRoO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rT64G7yRoO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rT64G7yRoO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rT64G7yRoO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rT64G7yRoO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rT64G7yRoO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rT64G7yRoO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rT64G7yRoO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rT64G7yRoO .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-rT64G7yRoO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rT64G7yRoO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rT64G7yRoO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rT64G7yRoO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rT64G7yRoO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-rT64G7yRoO button.navbar-toggler:focus {
  outline: none;
}
.cid-rT64G7yRoO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #200960;
}
.cid-rT64G7yRoO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-rT64G7yRoO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rT64G7yRoO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rT64G7yRoO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-rT64G7yRoO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rT64G7yRoO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-rT64G7yRoO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-rT64G7yRoO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rT64G7yRoO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rT64G7yRoO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rT64G7yRoO .collapsed .btn {
  display: flex;
}
.cid-rT64G7yRoO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rT64G7yRoO .collapsed .navbar-collapse.collapsing,
.cid-rT64G7yRoO .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rT64G7yRoO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rT64G7yRoO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rT64G7yRoO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rT64G7yRoO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rT64G7yRoO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rT64G7yRoO .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rT64G7yRoO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rT64G7yRoO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rT64G7yRoO .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rT64G7yRoO .collapsed button.navbar-toggler {
  display: block;
}
.cid-rT64G7yRoO .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-rT64G7yRoO .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rT64G7yRoO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-rT64G7yRoO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rT64G7yRoO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rT64G7yRoO .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-rT64G7yRoO .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-rT64G7yRoO .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-rT64G7yRoO .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-rT64G7yRoO .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rT64G7yRoO .navbar-collapse.collapsing,
  .cid-rT64G7yRoO .navbar-collapse.show {
    display: block !important;
  }
  .cid-rT64G7yRoO .navbar-collapse.collapsing .navbar-nav,
  .cid-rT64G7yRoO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rT64G7yRoO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rT64G7yRoO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rT64G7yRoO .navbar-collapse.collapsing .navbar-buttons,
  .cid-rT64G7yRoO .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-rT64G7yRoO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rT64G7yRoO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rT64G7yRoO img {
    height: 3.8rem !important;
  }
  .cid-rT64G7yRoO .btn {
    display: flex;
  }
  .cid-rT64G7yRoO button.navbar-toggler {
    display: block;
  }
  .cid-rT64G7yRoO .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-rT64G7yRoO .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rT64G7yRoO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-rT64G7yRoO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rT64G7yRoO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rT64G7yRoO .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-rT64G7yRoO .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rT64G7yRoO .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-rT64G7yRoO .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rT64G7yRoO .nav-link:focus {
  outline: none;
}
.cid-rT64G7yRoO .navbar-toggler {
  position: relative;
}
.cid-rT64G7yRoO .dropdown-item.active,
.cid-rT64G7yRoO .dropdown-item:active {
  color: initial;
}
.cid-rT64G7yRoO .widget-title,
.cid-rT64G7yRoO .widget-icon {
  color: #ffffff;
}
.cid-rT64G7yRoO .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-rT64G7yRoO .menu-logo {
    display: none;
  }
  .cid-rT64G7yRoO .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-rT64G7yRoO .nav-item:before {
    content: none;
  }
  .cid-rT64G7yRoO .navbar {
    padding: 0;
  }
  .cid-rT64G7yRoO .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rT64G7yRoO button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-s7rB7rKcxf {
  padding-top: 135px;
  padding-bottom: 195px;
  background-image: url("../../../assets/images/img-6567-montage-1920x1280.jpg");
  background-position: 20% 80%;
}
.cid-s7rB7rKcxf H2 {
  color: #d58f76;
}
.cid-s7rB7rKcxf .row {
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-s7rB7rKcxf .mbr-overlay {
    opacity: 0.7!important;
  }
}
.cid-s7rB7rKcxf H1 {
  color: #b1c2c9;
}
.cid-s7rB7B3APq {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #b1c2c9;
}
@media (min-width: 1500px) {
  .cid-s7rB7B3APq .container {
    max-width: 1400px;
  }
}
.cid-s7rB7B3APq img {
  margin-bottom: -2.5rem;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  transform: translateY(-100px);
  object-fit: cover;
}
.cid-s7rB7B3APq .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-s7rB7B3APq .card-wrapper {
  background: #f6f3ee;
  background-position: center;
  padding: 0 4rem;
  padding-bottom: 4rem;
  margin-top: 6rem;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-s7rB7B3APq .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #d58f76;
}
.cid-s7rB7B3APq .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-s7rB7B3APq .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
@media (max-width: 767px) {
  .cid-s7rB7B3APq .card-wrapper {
    padding: 0 1rem;
    padding-bottom: 4rem;
  }
}
.cid-s7rB7B3APq .card-subtitle {
  color: #000000;
}
.cid-s7rB7B3APq .mbr-price {
  color: #b1c2c9;
}
.cid-s7rB7B3APq .mbr-section-subtitle {
  color: #000000;
}
.cid-s7rB7B3APq .mbr-text,
.cid-s7rB7B3APq .link-align {
  color: #b1c2c9;
  text-align: left;
}
.cid-s7rB7B3APq .main-title {
  color: #000000;
}
.cid-s7rC4MMRjX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s7rB7CNGar {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-s7rB7CNGar .mbr-overlay {
  background-color: #333333;
  opacity: 0.4;
}
.cid-s7rB7CNGar input,
.cid-s7rB7CNGar textarea,
.cid-s7rB7CNGar .jqselect {
  font-weight: 300!important;
}
.cid-s7rB7CNGar textarea {
  min-height: 200px!important;
}
.cid-s7rB7CNGar .btn {
  height: 63px;
  margin: 0!important;
}
.cid-s7rB7CNGar .col-auto {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-s7rB7CNGar .col {
    width: 100%;
    flex-basis: auto;
  }
}
.cid-s7rB7CNGar .jq-selectbox__select-text {
  color: #b1c2c9;
}
.cid-s7rB7CNGar .jq-selectbox__select {
  padding: 0.65em 1em;
}
.cid-s7rB7CNGar .jq-selectbox li {
  padding: 0.8em 1.4em!important;
  color: #b1c2c9 !important;
}
.cid-s7rB7CNGar .form-control,
.cid-s7rB7CNGar .field-input {
  padding: 2rem 1.5rem;
  padding-top: 1.8rem;
  min-height: auto;
  background-color: #ffffff;
  border-color: #f6f3ee;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s7rB7CNGar .form-control::-webkit-input-placeholder,
.cid-s7rB7CNGar .field-input::-webkit-input-placeholder,
.cid-s7rB7CNGar .form-control::-webkit-input-placeholder,
.cid-s7rB7CNGar .field-input::-webkit-input-placeholder {
  color: #b1c2c9;
}
.cid-s7rB7CNGar .form-control:-moz-placeholder,
.cid-s7rB7CNGar .field-input:-moz-placeholder,
.cid-s7rB7CNGar .form-control:-moz-placeholder,
.cid-s7rB7CNGar .field-input:-moz-placeholder {
  color: #b1c2c9;
}
.cid-s7rB7CNGar .form-control:hover,
.cid-s7rB7CNGar .field-input:hover,
.cid-s7rB7CNGar .form-control:focus,
.cid-s7rB7CNGar .field-input:focus {
  background-color: #ffffff;
  border-color: #f6f3ee;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-s7rB7CNGar .form-control:hover::-webkit-input-placeholder,
.cid-s7rB7CNGar .field-input:hover::-webkit-input-placeholder,
.cid-s7rB7CNGar .form-control:focus::-webkit-input-placeholder,
.cid-s7rB7CNGar .field-input:focus::-webkit-input-placeholder,
.cid-s7rB7CNGar .form-control:hover::-webkit-input-placeholder,
.cid-s7rB7CNGar .field-input:hover::-webkit-input-placeholder,
.cid-s7rB7CNGar .form-control:focus::-webkit-input-placeholder,
.cid-s7rB7CNGar .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-s7rB7CNGar .form-control:hover:-moz-placeholder,
.cid-s7rB7CNGar .field-input:hover:-moz-placeholder,
.cid-s7rB7CNGar .form-control:focus:-moz-placeholder,
.cid-s7rB7CNGar .field-input:focus:-moz-placeholder,
.cid-s7rB7CNGar .form-control:hover:-moz-placeholder,
.cid-s7rB7CNGar .field-input:hover:-moz-placeholder,
.cid-s7rB7CNGar .form-control:focus:-moz-placeholder,
.cid-s7rB7CNGar .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-s7rB7CNGar textarea {
  padding-top: 1rem!important;
}
.cid-s7rB7CNGar .jq-number__spin:hover,
.cid-s7rB7CNGar .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #f6f3ee;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s7rB7CNGar .jq-number__spin {
  background-color: #ffffff;
  border-color: #f6f3ee;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s7rB7CNGar .jq-selectbox li,
.cid-s7rB7CNGar .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-s7rB7CNGar .jq-selectbox li:hover,
.cid-s7rB7CNGar .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-s7rB7CNGar .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-s7rB7CNGar .jq-number__spin.minus:hover:after,
.cid-s7rB7CNGar .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-s7rB7CNGar .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-s7rB7CNGar .jq-number__spin.minus:after,
.cid-s7rB7CNGar .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-s7rB7CNGar .jq-selectbox__trigger-arrow {
  border-top-color: #b1c2c9 !important;
  border-bottom-color: #b1c2c9 !important;
}
.cid-s7rB7CNGar input::-webkit-clear-button {
  display: none;
}
.cid-s7rB7CNGar input::-webkit-inner-spin-button {
  display: none;
}
.cid-s7rB7CNGar input::-webkit-outer-spin-button {
  display: none;
}
.cid-s7rB7CNGar input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-s7rB7CNGar H5 {
  text-align: center;
  color: #ffffff;
}
.cid-s7rB7CNGar H6 {
  text-align: center;
  color: #ffffff;
}
.cid-s7rB7uf7sA {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7rB7uf7sA H3 {
  color: #000000;
}
.cid-s7rB7uf7sA H4 {
  color: #d58f76;
}
.cid-s7rB7vciFH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s7rB7vciFH .card {
  margin: auto;
}
.cid-s7rB7vciFH .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #000000;
  margin-bottom: 2rem;
}
.cid-s7rB7vciFH .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 1rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s7rB7vciFH .card-text,
.cid-s7rB7vciFH .card-box {
  color: #999999;
}
.cid-s7rB7vciFH .display-5 {
  font-size: 1.6rem;
}
.cid-s7rB7vciFH h4 {
  margin-bottom: 10px;
}
.cid-s7rB7vciFH .card-title,
.cid-s7rB7vciFH .card-box {
  color: #000000;
}
.cid-s7rB7vciFH .mbr-section-subtitle,
.cid-s7rB7vciFH .card-box {
  color: #999999;
  text-align: center;
}
.cid-s7rB7vciFH .mbr-section-subtitle {
  color: #b1c2c9;
}
.cid-s7rB7wi5da {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7rB7wi5da H4 {
  color: #ffffff;
}
.cid-s7rB7wi5da H3 {
  color: #000000;
}
.cid-s7rB7wSKRw {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s7rB7wSKRw H1 {
  color: #000000;
  text-align: center;
}
.cid-s7rB7wSKRw .mbr-text,
.cid-s7rB7wSKRw .mbr-section-btn {
  color: #b1c2c9;
}
.cid-s7rB7wSKRw img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-s7rB7wSKRw .col-lg-6 {
    padding: 0 2rem;
  }
}
.cid-s7rB7xztwu {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7rB7xztwu H4 {
  color: #000000;
}
.cid-s7rB7yfrAV {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-s7rB7yfrAV .container {
    max-width: 1400px;
  }
}
.cid-s7rB7yfrAV img {
  width: 80%;
  height: auto;
  margin: auto;
}
.cid-s7rB7yfrAV .content {
  margin: auto;
}
.cid-s7rB7yfrAV .mbr-text,
.cid-s7rB7yfrAV .mbr-section-btn {
  color: #999999;
}
@media (max-width: 1200px) {
  .cid-s7rB7yfrAV img {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-s7rB7yfrAV .img-col {
    padding-bottom: 2rem;
  }
}
.cid-s7rB7yfrAV .quote {
  color: #b1c2c9;
}
.cid-s7rB7yfrAV H3 {
  color: #000000;
}
.cid-s7rB7yfrAV H4 {
  color: #d58f76;
}
.cid-s7rB7yfrAV .mbr-text {
  color: #b1c2c9;
}
.cid-s7rB7yV2Qh {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7rB7yV2Qh H4 {
  color: #111111;
}
.cid-s7rB7yV2Qh H3 {
  color: #f6f3ee;
}
.cid-s7rB7zzR2m {
  padding-top: 60px;
  padding-bottom: 105px;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-s7rB7zzR2m .carousel {
  z-index: 2;
  position: relative;
}
.cid-s7rB7zzR2m .user {
  padding: 0!important;
}
.cid-s7rB7zzR2m .big-icon {
  top: 1rem;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #e6eefa;
  opacity: 0.5;
}
.cid-s7rB7zzR2m .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-s7rB7zzR2m .carousel-item.active,
.cid-s7rB7zzR2m .carousel-item-next,
.cid-s7rB7zzR2m .carousel-item-prev {
  display: flex;
}
.cid-s7rB7zzR2m .user_name {
  margin: 0;
}
.cid-s7rB7zzR2m .carousel-controls a {
  font-size: 2rem;
}
.cid-s7rB7zzR2m .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #b1c2c9;
  background: transparent;
  opacity: 0.5;
}
.cid-s7rB7zzR2m .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-s7rB7zzR2m ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-s7rB7zzR2m .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #b1c2c9;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-s7rB7zzR2m .carousel-indicators li:hover {
  opacity: 1;
}
.cid-s7rB7zzR2m .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-s7rB7zzR2m .user_text {
  color: #232323;
  text-align: left;
}
.cid-s7rB7zzR2m .user_desk {
  color: #999999;
}
.cid-s7rB7zzR2m .user_desk,
.cid-s7rB7zzR2m .carousel-item {
  text-align: left;
  color: #b1c2c9;
}
.cid-s7rB7zzR2m .carousel-indicators {
  margin: 0;
  margin-left: 0.5rem;
  justify-content: flex-start !important;
}
@media (max-width: 767px) {
  .cid-s7rB7zzR2m .carousel-indicators {
    margin: auto;
    justify-content: center!important;
  }
}
.cid-s7rB7zzR2m .carousel-control-next {
  right: -30px;
  transform: translateX(50%);
}
.cid-s7rB7zzR2m .carousel-control-prev {
  left: -30px;
  transform: translateX(-50%);
}
.cid-s7rB7C6GLR {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7rB7C6GLR H4 {
  color: #000000;
}
.cid-s7rB7DvDYX {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-s7rB7DvDYX img {
  width: 120px;
  margin: auto;
}
.cid-s7rB7DvDYX .card {
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.cid-s7rB7DvDYX .card img {
  width: 100%;
  max-width: 120px;
}
.cid-s7rB7DvDYX .mbr-text,
.cid-s7rB7DvDYX .mbr-section-btn {
  color: #b1c2c9;
  text-align: center;
}
.cid-s7rB7DvDYX H4 {
  color: #b1c2c9;
}
.cid-s7rB7DvDYX H3 {
  color: #000000;
}
.cid-s7rB7EoKpN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7rB7EoKpN .mbr-iconfont {
  font-size: 3rem;
  color: #d58f76;
  margin-right: 1.5rem;
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff;
  margin: auto;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-s7rB7EoKpN .card-wrapper {
    padding: 0 3rem;
  }
}
.cid-s7rB7EoKpN .card-title {
  color: #ffffff;
}
.cid-s7rB7EoKpN .card {
  border-radius: 0;
  width: 100%;
}
.cid-s7rB7EoKpN .card2 {
  border-right: 1px solid #ffffff;
}
.cid-s7rB7EoKpN .card1 {
  border-right: 1px solid #ffffff;
}
.cid-s7rB7EoKpN h4 {
  margin: 0;
}
.cid-s7rB7EoKpN .card-text {
  color: #ffffff;
}
.cid-s7rB7EoKpN .mbr-text {
  color: #200960;
}
@media (max-width: 991px) {
  .cid-s7rB7EoKpN .card {
    border: 0px;
    margin-bottom: 2rem;
  }
}
.cid-s7rB7F8sVg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #b1c2c9;
}
.cid-s7rB7F8sVg .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s7rB7F8sVg .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-s7rB7F8sVg .mbr-list {
  margin: 0;
}
.cid-s7rB7F8sVg .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-s7rB7F8sVg .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-s7rB7F8sVg .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-s7rB7F8sVg .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-s7rB7F8sVg .list-inline-item,
.cid-s7rB7F8sVg .mbr-list,
.cid-s7rB7F8sVg .first-column {
  text-align: left;
}
.cid-s7rB7GwBPG .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-s7rB7GwBPG .navbar-fixed-top {
  padding-top: 0;
}
.cid-s7rB7GwBPG .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-s7rB7GwBPG .collapse {
  justify-content: space-between !important;
}
.cid-s7rB7GwBPG .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-s7rB7GwBPG .mbr-iconfont {
  cursor: pointer;
}
.cid-s7rB7GwBPG .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-s7rB7GwBPG .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #b1c2c9;
  border-radius: 50%;
}
.cid-s7rB7GwBPG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-s7rB7GwBPG .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-s7rB7GwBPG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s7rB7GwBPG .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-s7rB7GwBPG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s7rB7GwBPG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s7rB7GwBPG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s7rB7GwBPG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s7rB7GwBPG .menu-content-top {
  background: #b1c2c9;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-s7rB7GwBPG .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-s7rB7GwBPG .dropdown-item,
.cid-s7rB7GwBPG .nav-link,
.cid-s7rB7GwBPG .brand-name {
  font-style: normal;
}
.cid-s7rB7GwBPG .dropdown-item:hover,
.cid-s7rB7GwBPG .nav-link:hover,
.cid-s7rB7GwBPG .brand-name:hover {
  color: #b1c2c9 !important;
}
.cid-s7rB7GwBPG .dropdown-menu {
  background-color: #82786e;
}
.cid-s7rB7GwBPG .dropdown-item:active {
  background-color: #82786e;
}
.cid-s7rB7GwBPG .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-s7rB7GwBPG .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s7rB7GwBPG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s7rB7GwBPG .content-text {
  margin-bottom: 0;
}
.cid-s7rB7GwBPG .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-s7rB7GwBPG .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #b1c2c9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-s7rB7GwBPG .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-s7rB7GwBPG .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-s7rB7GwBPG .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s7rB7GwBPG .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s7rB7GwBPG .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-s7rB7GwBPG .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s7rB7GwBPG .nav-dropdown .link {
  font-weight: 400;
}
.cid-s7rB7GwBPG .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-s7rB7GwBPG .content-right-side {
  text-align: center;
}
.cid-s7rB7GwBPG .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-s7rB7GwBPG .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-s7rB7GwBPG .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-s7rB7GwBPG .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-s7rB7GwBPG .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-s7rB7GwBPG .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s7rB7GwBPG .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-s7rB7GwBPG .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-s7rB7GwBPG .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-s7rB7GwBPG .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-s7rB7GwBPG .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-s7rB7GwBPG .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-s7rB7GwBPG .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-s7rB7GwBPG .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-s7rB7GwBPG .navbar {
    display: block;
    padding: 0;
  }
  .cid-s7rB7GwBPG .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-s7rB7GwBPG .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-s7rB7GwBPG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-s7rB7GwBPG .navbar-toggler {
    display: none;
  }
}
.cid-s7rB7GwBPG .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-s7rB7GwBPG .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-s7rB7GwBPG .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-s7rB7GwBPG .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-s7rB7GwBPG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-s7rB7GwBPG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s7rB7GwBPG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s7rB7GwBPG .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-s7rB7GwBPG .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s7rB7GwBPG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s7rB7GwBPG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s7rB7GwBPG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s7rB7GwBPG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s7rB7GwBPG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s7rB7GwBPG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s7rB7GwBPG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s7rB7GwBPG .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-s7rB7GwBPG .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-s7rB7GwBPG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s7rB7GwBPG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s7rB7GwBPG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s7rB7GwBPG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s7rB7GwBPG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-s7rB7GwBPG button.navbar-toggler:focus {
  outline: none;
}
.cid-s7rB7GwBPG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #200960;
}
.cid-s7rB7GwBPG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-s7rB7GwBPG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s7rB7GwBPG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s7rB7GwBPG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-s7rB7GwBPG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s7rB7GwBPG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-s7rB7GwBPG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-s7rB7GwBPG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s7rB7GwBPG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s7rB7GwBPG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s7rB7GwBPG .collapsed .btn {
  display: flex;
}
.cid-s7rB7GwBPG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s7rB7GwBPG .collapsed .navbar-collapse.collapsing,
.cid-s7rB7GwBPG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s7rB7GwBPG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s7rB7GwBPG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s7rB7GwBPG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s7rB7GwBPG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s7rB7GwBPG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s7rB7GwBPG .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-s7rB7GwBPG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s7rB7GwBPG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-s7rB7GwBPG .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s7rB7GwBPG .collapsed button.navbar-toggler {
  display: block;
}
.cid-s7rB7GwBPG .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-s7rB7GwBPG .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-s7rB7GwBPG .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-s7rB7GwBPG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s7rB7GwBPG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s7rB7GwBPG .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-s7rB7GwBPG .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-s7rB7GwBPG .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-s7rB7GwBPG .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-s7rB7GwBPG .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s7rB7GwBPG .navbar-collapse.collapsing,
  .cid-s7rB7GwBPG .navbar-collapse.show {
    display: block !important;
  }
  .cid-s7rB7GwBPG .navbar-collapse.collapsing .navbar-nav,
  .cid-s7rB7GwBPG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s7rB7GwBPG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s7rB7GwBPG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s7rB7GwBPG .navbar-collapse.collapsing .navbar-buttons,
  .cid-s7rB7GwBPG .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-s7rB7GwBPG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s7rB7GwBPG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s7rB7GwBPG img {
    height: 3.8rem !important;
  }
  .cid-s7rB7GwBPG .btn {
    display: flex;
  }
  .cid-s7rB7GwBPG button.navbar-toggler {
    display: block;
  }
  .cid-s7rB7GwBPG .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-s7rB7GwBPG .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-s7rB7GwBPG .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-s7rB7GwBPG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s7rB7GwBPG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s7rB7GwBPG .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-s7rB7GwBPG .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-s7rB7GwBPG .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-s7rB7GwBPG .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-s7rB7GwBPG .nav-link:focus {
  outline: none;
}
.cid-s7rB7GwBPG .navbar-toggler {
  position: relative;
}
.cid-s7rB7GwBPG .dropdown-item.active,
.cid-s7rB7GwBPG .dropdown-item:active {
  color: initial;
}
.cid-s7rB7GwBPG .widget-title,
.cid-s7rB7GwBPG .widget-icon {
  color: #ffffff;
}
.cid-s7rB7GwBPG .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-s7rB7GwBPG .menu-logo {
    display: none;
  }
  .cid-s7rB7GwBPG .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-s7rB7GwBPG .nav-item:before {
    content: none;
  }
  .cid-s7rB7GwBPG .navbar {
    padding: 0;
  }
  .cid-s7rB7GwBPG .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-s7rB7GwBPG button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sdyK9JaeND {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #1e1e1e;
}
@media (min-width: 1500px) {
  .cid-sdyK9JaeND .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sdyK9JaeND .copyright,
  .cid-sdyK9JaeND .col-lg-1 {
    margin-bottom: 1rem;
  }
}
.cid-sdyK9JaeND .col-lg-1 {
  max-width: fit-content;
  padding: 0;
}
.cid-sdyK9JaeND .mbr-text {
  color: #cccccc;
  text-align: left;
}
.cid-s7VLK2w9IV {
  padding-top: 135px;
  padding-bottom: 195px;
  background-image: url("../../../assets/images/img-6567-montage-1920x1280.jpg");
  background-position: 20% 80%;
}
.cid-s7VLK2w9IV H2 {
  color: #d58f76;
}
.cid-s7VLK2w9IV .row {
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-s7VLK2w9IV .mbr-overlay {
    opacity: 0.7!important;
  }
}
.cid-s7VLK2w9IV H1 {
  color: #b1c2c9;
}
.cid-s7VLK3WJA6 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s7VLK3WJA6 .mbr-section-title span {
  color: #ffbc00;
}
.cid-s7VLK3WJA6 .video-col {
  padding: 0;
}
.cid-s7VLK3WJA6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s7VLK3WJA6 .progressbar-title p {
  margin-bottom: 8px;
}
.cid-s7VLK3WJA6 .progressbar-title {
  color: white;
}
.cid-s7VLK3WJA6 .progress_elements {
  max-width: 600px;
  padding: 4rem 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s7VLK3WJA6 .progress_elements > div {
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.cid-s7VLK3WJA6 .box {
  background-image: url("../../../assets/images/laptopmontage1-50-2000x1333.jpeg");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s7VLK3WJA6 .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: #b1c2c9;
  width: 130px;
  height: 130px;
  cursor: pointer;
}
.cid-s7VLK3WJA6 .icon-wrap:hover {
  background: #cccccc;
}
.cid-s7VLK3WJA6 .icon-wrap:hover span {
  transform: scale(1.04);
}
.cid-s7VLK3WJA6 .icon-wrap span {
  padding-left: 4px;
}
.cid-s7VLK3WJA6 .mbr-media span {
  font-size: 1.4rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-s7VLK3WJA6 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-s7VLK3WJA6 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-s7VLK3WJA6 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-s7VLK3WJA6 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-s7VLK3WJA6 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-s7VLK3WJA6 a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-s7VLK3WJA6 .box {
    height: 250px;
  }
}
.cid-s7VLK3WJA6 .progress {
  width: 100%;
  height: 2px;
  border-radius: 0;
  background-color: #ffffff;
}
.cid-s7VLK3WJA6 .progress-bar {
  height: 2px;
  background-color: #111111;
}
.cid-s7VLK3WJA6 .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-s7VLK3WJA6 .progressbar-number {
  display: inline-block;
}
.cid-s7VLK3WJA6 .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-s7VLK3WJA6 .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-s7VLK3WJA6 .progress_value {
  position: relative;
  color: #111111;
}
.cid-s7VLK3WJA6 progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-s7VLK3WJA6 progress::-webkit-progress-value {
  background: #111111;
}
.cid-s7VLK3WJA6 progress[value]::-moz-progress-bar {
  background: #111111;
}
.cid-s7VLK3WJA6 progress::-ms-fill {
  background: #111111;
}
.cid-s7VLK3WJA6 .progress1 .progressbar-number:before {
  content: '53';
}
.cid-s7VLK3WJA6 .progress2 .progressbar-number:before {
  content: '63';
}
.cid-s7VLK3WJA6 .progress3 .progressbar-number:before {
  content: '41';
}
.cid-s7VLK3WJA6 .progress4 .progressbar-number:before {
  content: '28';
}
.cid-s7VLK3WJA6 .progress5 .progressbar-number:before {
  content: '10';
}
.cid-s7VLK3WJA6 .progress-bar-1 {
  width: 53%;
}
.cid-s7VLK3WJA6 .progress-bar-2 {
  width: 63%;
}
.cid-s7VLK3WJA6 .progress-bar-3 {
  width: 41%;
}
.cid-s7VLK3WJA6 .progress-bar-4 {
  width: 28%;
}
.cid-s7VLK3WJA6 .progress-bar-5 {
  width: 10%;
}
.cid-s7VLK3WJA6 .mbr-section-text {
  color: #b1c2c9;
}
@media (max-width: 767px) {
  .cid-s7VLK3WJA6 .progress_elements {
    padding: 4rem 1rem;
  }
}
.cid-s7VLK3WJA6 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-s7VLK3WJA6 .mbr-section-text DIV {
  text-align: left;
}
.cid-s7VLK3WJA6 H4 {
  color: #b1c2c9;
}
.cid-s7VLK51zgE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7VLK51zgE H3 {
  color: #000000;
}
.cid-s7VLK51zgE H4 {
  color: #d58f76;
}
.cid-s7VLK60wOK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s7VLK60wOK .card {
  margin: auto;
}
.cid-s7VLK60wOK .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #000000;
  margin-bottom: 2rem;
}
.cid-s7VLK60wOK .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 1rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s7VLK60wOK .card-text,
.cid-s7VLK60wOK .card-box {
  color: #999999;
}
.cid-s7VLK60wOK .display-5 {
  font-size: 1.6rem;
}
.cid-s7VLK60wOK h4 {
  margin-bottom: 10px;
}
.cid-s7VLK60wOK .card-title,
.cid-s7VLK60wOK .card-box {
  color: #000000;
}
.cid-s7VLK60wOK .mbr-section-subtitle,
.cid-s7VLK60wOK .card-box {
  color: #999999;
  text-align: center;
}
.cid-s7VLK60wOK .mbr-section-subtitle {
  color: #b1c2c9;
}
.cid-s7VLK79MWA {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7VLK79MWA H4 {
  color: #ffffff;
}
.cid-s7VLK79MWA H3 {
  color: #000000;
}
.cid-s7VLK7W6kt {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-s7VLK7W6kt H1 {
  color: #000000;
  text-align: center;
}
.cid-s7VLK7W6kt .mbr-text,
.cid-s7VLK7W6kt .mbr-section-btn {
  color: #b1c2c9;
}
.cid-s7VLK7W6kt img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-s7VLK7W6kt .col-lg-6 {
    padding: 0 2rem;
  }
}
.cid-s7VLK8OcZm {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7VLK8OcZm H4 {
  color: #000000;
}
.cid-s7VLK9B05Q {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-s7VLK9B05Q .container {
    max-width: 1400px;
  }
}
.cid-s7VLK9B05Q img {
  width: 80%;
  height: auto;
  margin: auto;
}
.cid-s7VLK9B05Q .content {
  margin: auto;
}
.cid-s7VLK9B05Q .mbr-text,
.cid-s7VLK9B05Q .mbr-section-btn {
  color: #999999;
}
@media (max-width: 1200px) {
  .cid-s7VLK9B05Q img {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-s7VLK9B05Q .img-col {
    padding-bottom: 2rem;
  }
}
.cid-s7VLK9B05Q .quote {
  color: #b1c2c9;
}
.cid-s7VLK9B05Q H3 {
  color: #000000;
}
.cid-s7VLK9B05Q H4 {
  color: #d58f76;
}
.cid-s7VLK9B05Q .mbr-text {
  color: #b1c2c9;
}
.cid-s7VLKasujY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7VLKasujY H4 {
  color: #111111;
}
.cid-s7VLKasujY H3 {
  color: #f6f3ee;
}
.cid-s7VLKbeqnd {
  padding-top: 60px;
  padding-bottom: 105px;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-s7VLKbeqnd .carousel {
  z-index: 2;
  position: relative;
}
.cid-s7VLKbeqnd .user {
  padding: 0!important;
}
.cid-s7VLKbeqnd .big-icon {
  top: 1rem;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #e6eefa;
  opacity: 0.5;
}
.cid-s7VLKbeqnd .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-s7VLKbeqnd .carousel-item.active,
.cid-s7VLKbeqnd .carousel-item-next,
.cid-s7VLKbeqnd .carousel-item-prev {
  display: flex;
}
.cid-s7VLKbeqnd .user_name {
  margin: 0;
}
.cid-s7VLKbeqnd .carousel-controls a {
  font-size: 2rem;
}
.cid-s7VLKbeqnd .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #b1c2c9;
  background: transparent;
  opacity: 0.5;
}
.cid-s7VLKbeqnd .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-s7VLKbeqnd ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-s7VLKbeqnd .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #b1c2c9;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-s7VLKbeqnd .carousel-indicators li:hover {
  opacity: 1;
}
.cid-s7VLKbeqnd .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-s7VLKbeqnd .user_text {
  color: #232323;
  text-align: left;
}
.cid-s7VLKbeqnd .user_desk {
  color: #999999;
}
.cid-s7VLKbeqnd .user_desk,
.cid-s7VLKbeqnd .carousel-item {
  text-align: left;
  color: #b1c2c9;
}
.cid-s7VLKbeqnd .carousel-indicators {
  margin: 0;
  margin-left: 0.5rem;
  justify-content: flex-start !important;
}
@media (max-width: 767px) {
  .cid-s7VLKbeqnd .carousel-indicators {
    margin: auto;
    justify-content: center!important;
  }
}
.cid-s7VLKbeqnd .carousel-control-next {
  right: -30px;
  transform: translateX(50%);
}
.cid-s7VLKbeqnd .carousel-control-prev {
  left: -30px;
  transform: translateX(-50%);
}
.cid-s7VLKcTPOO {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #b1c2c9;
}
@media (min-width: 1500px) {
  .cid-s7VLKcTPOO .container {
    max-width: 1400px;
  }
}
.cid-s7VLKcTPOO img {
  margin-bottom: -2.5rem;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  transform: translateY(-100px);
  object-fit: cover;
}
.cid-s7VLKcTPOO .link-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-s7VLKcTPOO .card-wrapper {
  background: #f6f3ee;
  background-position: center;
  padding: 0 4rem;
  padding-bottom: 4rem;
  margin-top: 6rem;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-s7VLKcTPOO .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #d58f76;
}
.cid-s7VLKcTPOO .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-s7VLKcTPOO .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
@media (max-width: 767px) {
  .cid-s7VLKcTPOO .card-wrapper {
    padding: 0 1rem;
    padding-bottom: 4rem;
  }
}
.cid-s7VLKcTPOO .card-subtitle {
  color: #000000;
}
.cid-s7VLKcTPOO .mbr-price {
  color: #b1c2c9;
}
.cid-s7VLKcTPOO .mbr-section-subtitle {
  color: #000000;
}
.cid-s7VLKcTPOO .mbr-text,
.cid-s7VLKcTPOO .link-align {
  color: #b1c2c9;
  text-align: left;
}
.cid-s7VLKcTPOO .main-title {
  color: #000000;
}
.cid-s7VLKe8jsn {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7VLKe8jsn H4 {
  color: #000000;
}
.cid-s7VLKeZ36W {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-s7VLKeZ36W .mbr-overlay {
  background-color: #333333;
  opacity: 0.4;
}
.cid-s7VLKeZ36W input,
.cid-s7VLKeZ36W textarea,
.cid-s7VLKeZ36W .jqselect {
  font-weight: 300!important;
}
.cid-s7VLKeZ36W textarea {
  min-height: 200px!important;
}
.cid-s7VLKeZ36W .btn {
  height: 63px;
  margin: 0!important;
}
.cid-s7VLKeZ36W .col-auto {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-s7VLKeZ36W .col {
    width: 100%;
    flex-basis: auto;
  }
}
.cid-s7VLKeZ36W .jq-selectbox__select-text {
  color: #b1c2c9;
}
.cid-s7VLKeZ36W .jq-selectbox__select {
  padding: 0.65em 1em;
}
.cid-s7VLKeZ36W .jq-selectbox li {
  padding: 0.8em 1.4em!important;
  color: #b1c2c9 !important;
}
.cid-s7VLKeZ36W .form-control,
.cid-s7VLKeZ36W .field-input {
  padding: 2rem 1.5rem;
  padding-top: 1.8rem;
  min-height: auto;
  background-color: #ffffff;
  border-color: #f6f3ee;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s7VLKeZ36W .form-control::-webkit-input-placeholder,
.cid-s7VLKeZ36W .field-input::-webkit-input-placeholder,
.cid-s7VLKeZ36W .form-control::-webkit-input-placeholder,
.cid-s7VLKeZ36W .field-input::-webkit-input-placeholder {
  color: #b1c2c9;
}
.cid-s7VLKeZ36W .form-control:-moz-placeholder,
.cid-s7VLKeZ36W .field-input:-moz-placeholder,
.cid-s7VLKeZ36W .form-control:-moz-placeholder,
.cid-s7VLKeZ36W .field-input:-moz-placeholder {
  color: #b1c2c9;
}
.cid-s7VLKeZ36W .form-control:hover,
.cid-s7VLKeZ36W .field-input:hover,
.cid-s7VLKeZ36W .form-control:focus,
.cid-s7VLKeZ36W .field-input:focus {
  background-color: #ffffff;
  border-color: #f6f3ee;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-s7VLKeZ36W .form-control:hover::-webkit-input-placeholder,
.cid-s7VLKeZ36W .field-input:hover::-webkit-input-placeholder,
.cid-s7VLKeZ36W .form-control:focus::-webkit-input-placeholder,
.cid-s7VLKeZ36W .field-input:focus::-webkit-input-placeholder,
.cid-s7VLKeZ36W .form-control:hover::-webkit-input-placeholder,
.cid-s7VLKeZ36W .field-input:hover::-webkit-input-placeholder,
.cid-s7VLKeZ36W .form-control:focus::-webkit-input-placeholder,
.cid-s7VLKeZ36W .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-s7VLKeZ36W .form-control:hover:-moz-placeholder,
.cid-s7VLKeZ36W .field-input:hover:-moz-placeholder,
.cid-s7VLKeZ36W .form-control:focus:-moz-placeholder,
.cid-s7VLKeZ36W .field-input:focus:-moz-placeholder,
.cid-s7VLKeZ36W .form-control:hover:-moz-placeholder,
.cid-s7VLKeZ36W .field-input:hover:-moz-placeholder,
.cid-s7VLKeZ36W .form-control:focus:-moz-placeholder,
.cid-s7VLKeZ36W .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-s7VLKeZ36W textarea {
  padding-top: 1rem!important;
}
.cid-s7VLKeZ36W .jq-number__spin:hover,
.cid-s7VLKeZ36W .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #f6f3ee;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s7VLKeZ36W .jq-number__spin {
  background-color: #ffffff;
  border-color: #f6f3ee;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s7VLKeZ36W .jq-selectbox li,
.cid-s7VLKeZ36W .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-s7VLKeZ36W .jq-selectbox li:hover,
.cid-s7VLKeZ36W .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-s7VLKeZ36W .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-s7VLKeZ36W .jq-number__spin.minus:hover:after,
.cid-s7VLKeZ36W .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-s7VLKeZ36W .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-s7VLKeZ36W .jq-number__spin.minus:after,
.cid-s7VLKeZ36W .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-s7VLKeZ36W .jq-selectbox__trigger-arrow {
  border-top-color: #b1c2c9 !important;
  border-bottom-color: #b1c2c9 !important;
}
.cid-s7VLKeZ36W input::-webkit-clear-button {
  display: none;
}
.cid-s7VLKeZ36W input::-webkit-inner-spin-button {
  display: none;
}
.cid-s7VLKeZ36W input::-webkit-outer-spin-button {
  display: none;
}
.cid-s7VLKeZ36W input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-s7VLKeZ36W H5 {
  text-align: center;
  color: #ffffff;
}
.cid-s7VLKeZ36W H6 {
  text-align: center;
  color: #ffffff;
}
.cid-s7VLKfTwxt {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-s7VLKfTwxt img {
  width: 120px;
  margin: auto;
}
.cid-s7VLKfTwxt .card {
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.cid-s7VLKfTwxt .card img {
  width: 100%;
  max-width: 120px;
}
.cid-s7VLKfTwxt .mbr-text,
.cid-s7VLKfTwxt .mbr-section-btn {
  color: #b1c2c9;
  text-align: center;
}
.cid-s7VLKfTwxt H4 {
  color: #b1c2c9;
}
.cid-s7VLKfTwxt H3 {
  color: #000000;
}
.cid-s7VLKgU3Kp {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-s7VLKgU3Kp .mbr-iconfont {
  font-size: 3rem;
  color: #d58f76;
  margin-right: 1.5rem;
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff;
  margin: auto;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-s7VLKgU3Kp .card-wrapper {
    padding: 0 3rem;
  }
}
.cid-s7VLKgU3Kp .card-title {
  color: #ffffff;
}
.cid-s7VLKgU3Kp .card {
  border-radius: 0;
  width: 100%;
}
.cid-s7VLKgU3Kp .card2 {
  border-right: 1px solid #ffffff;
}
.cid-s7VLKgU3Kp .card1 {
  border-right: 1px solid #ffffff;
}
.cid-s7VLKgU3Kp h4 {
  margin: 0;
}
.cid-s7VLKgU3Kp .card-text {
  color: #ffffff;
}
.cid-s7VLKgU3Kp .mbr-text {
  color: #200960;
}
@media (max-width: 991px) {
  .cid-s7VLKgU3Kp .card {
    border: 0px;
    margin-bottom: 2rem;
  }
}
.cid-s7VLKhR1ht {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #b1c2c9;
}
.cid-s7VLKhR1ht .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s7VLKhR1ht .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-s7VLKhR1ht .mbr-list {
  margin: 0;
}
.cid-s7VLKhR1ht .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-s7VLKhR1ht .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-s7VLKhR1ht .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-s7VLKhR1ht .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-s7VLKhR1ht .list-inline-item,
.cid-s7VLKhR1ht .mbr-list,
.cid-s7VLKhR1ht .first-column {
  text-align: left;
}
.cid-s7VLKjTzbp .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-s7VLKjTzbp .navbar-fixed-top {
  padding-top: 0;
}
.cid-s7VLKjTzbp .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-s7VLKjTzbp .collapse {
  justify-content: space-between !important;
}
.cid-s7VLKjTzbp .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-s7VLKjTzbp .mbr-iconfont {
  cursor: pointer;
}
.cid-s7VLKjTzbp .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-s7VLKjTzbp .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #b1c2c9;
  border-radius: 50%;
}
.cid-s7VLKjTzbp .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-s7VLKjTzbp .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s7VLKjTzbp .menu-content-top {
  background: #b1c2c9;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-s7VLKjTzbp .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-s7VLKjTzbp .dropdown-item,
.cid-s7VLKjTzbp .nav-link,
.cid-s7VLKjTzbp .brand-name {
  font-style: normal;
}
.cid-s7VLKjTzbp .dropdown-item:hover,
.cid-s7VLKjTzbp .nav-link:hover,
.cid-s7VLKjTzbp .brand-name:hover {
  color: #b1c2c9 !important;
}
.cid-s7VLKjTzbp .dropdown-menu {
  background-color: #82786e;
}
.cid-s7VLKjTzbp .dropdown-item:active {
  background-color: #82786e;
}
.cid-s7VLKjTzbp .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-s7VLKjTzbp .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s7VLKjTzbp .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s7VLKjTzbp .content-text {
  margin-bottom: 0;
}
.cid-s7VLKjTzbp .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-s7VLKjTzbp .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #b1c2c9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-s7VLKjTzbp .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-s7VLKjTzbp .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-s7VLKjTzbp .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s7VLKjTzbp .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s7VLKjTzbp .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-s7VLKjTzbp .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s7VLKjTzbp .nav-dropdown .link {
  font-weight: 400;
}
.cid-s7VLKjTzbp .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-s7VLKjTzbp .content-right-side {
  text-align: center;
}
.cid-s7VLKjTzbp .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-s7VLKjTzbp .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-s7VLKjTzbp .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-s7VLKjTzbp .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-s7VLKjTzbp .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-s7VLKjTzbp .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s7VLKjTzbp .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-s7VLKjTzbp .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-s7VLKjTzbp .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-s7VLKjTzbp .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-s7VLKjTzbp .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-s7VLKjTzbp .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-s7VLKjTzbp .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-s7VLKjTzbp .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-s7VLKjTzbp .navbar {
    display: block;
    padding: 0;
  }
  .cid-s7VLKjTzbp .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-s7VLKjTzbp .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-s7VLKjTzbp .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-s7VLKjTzbp .navbar-toggler {
    display: none;
  }
}
.cid-s7VLKjTzbp .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-s7VLKjTzbp .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-s7VLKjTzbp .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-s7VLKjTzbp .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-s7VLKjTzbp .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-s7VLKjTzbp .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s7VLKjTzbp .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-s7VLKjTzbp .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s7VLKjTzbp .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s7VLKjTzbp .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-s7VLKjTzbp .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-s7VLKjTzbp .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s7VLKjTzbp .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s7VLKjTzbp .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s7VLKjTzbp .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s7VLKjTzbp button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-s7VLKjTzbp button.navbar-toggler:focus {
  outline: none;
}
.cid-s7VLKjTzbp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #200960;
}
.cid-s7VLKjTzbp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-s7VLKjTzbp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s7VLKjTzbp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s7VLKjTzbp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-s7VLKjTzbp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s7VLKjTzbp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-s7VLKjTzbp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-s7VLKjTzbp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s7VLKjTzbp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s7VLKjTzbp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s7VLKjTzbp .collapsed .btn {
  display: flex;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse.collapsing,
.cid-s7VLKjTzbp .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s7VLKjTzbp .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s7VLKjTzbp .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s7VLKjTzbp .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s7VLKjTzbp .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-s7VLKjTzbp .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s7VLKjTzbp .collapsed button.navbar-toggler {
  display: block;
}
.cid-s7VLKjTzbp .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-s7VLKjTzbp .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-s7VLKjTzbp .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-s7VLKjTzbp .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s7VLKjTzbp .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s7VLKjTzbp .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-s7VLKjTzbp .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-s7VLKjTzbp .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-s7VLKjTzbp .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-s7VLKjTzbp .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s7VLKjTzbp .navbar-collapse.collapsing,
  .cid-s7VLKjTzbp .navbar-collapse.show {
    display: block !important;
  }
  .cid-s7VLKjTzbp .navbar-collapse.collapsing .navbar-nav,
  .cid-s7VLKjTzbp .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s7VLKjTzbp .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s7VLKjTzbp .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s7VLKjTzbp .navbar-collapse.collapsing .navbar-buttons,
  .cid-s7VLKjTzbp .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-s7VLKjTzbp .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s7VLKjTzbp .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s7VLKjTzbp img {
    height: 3.8rem !important;
  }
  .cid-s7VLKjTzbp .btn {
    display: flex;
  }
  .cid-s7VLKjTzbp button.navbar-toggler {
    display: block;
  }
  .cid-s7VLKjTzbp .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-s7VLKjTzbp .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-s7VLKjTzbp .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-s7VLKjTzbp .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s7VLKjTzbp .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s7VLKjTzbp .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-s7VLKjTzbp .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-s7VLKjTzbp .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-s7VLKjTzbp .nav-link:focus {
  outline: none;
}
.cid-s7VLKjTzbp .navbar-toggler {
  position: relative;
}
.cid-s7VLKjTzbp .dropdown-item.active,
.cid-s7VLKjTzbp .dropdown-item:active {
  color: initial;
}
.cid-s7VLKjTzbp .widget-title,
.cid-s7VLKjTzbp .widget-icon {
  color: #ffffff;
}
.cid-s7VLKjTzbp .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-s7VLKjTzbp .menu-logo {
    display: none;
  }
  .cid-s7VLKjTzbp .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-s7VLKjTzbp .nav-item:before {
    content: none;
  }
  .cid-s7VLKjTzbp .navbar {
    padding: 0;
  }
  .cid-s7VLKjTzbp .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-s7VLKjTzbp button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sdyK9JaeND {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #1e1e1e;
}
@media (min-width: 1500px) {
  .cid-sdyK9JaeND .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sdyK9JaeND .copyright,
  .cid-sdyK9JaeND .col-lg-1 {
    margin-bottom: 1rem;
  }
}
.cid-sdyK9JaeND .col-lg-1 {
  max-width: fit-content;
  padding: 0;
}
.cid-sdyK9JaeND .mbr-text {
  color: #cccccc;
  text-align: left;
}
.cid-s7VLKhR1ht {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #b1c2c9;
}
.cid-s7VLKhR1ht .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s7VLKhR1ht .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-s7VLKhR1ht .mbr-list {
  margin: 0;
}
.cid-s7VLKhR1ht .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-s7VLKhR1ht .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-s7VLKhR1ht .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-s7VLKhR1ht .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-s7VLKhR1ht .list-inline-item,
.cid-s7VLKhR1ht .mbr-list,
.cid-s7VLKhR1ht .first-column {
  text-align: left;
}
.cid-sdovgmOlKd {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-sdovgmOlKd H4 {
  color: #000000;
}
.cid-sdzcbcpIde {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-sdzcbcpIde img {
  width: 120px;
  margin: auto;
}
.cid-sdzcbcpIde .card {
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.cid-sdzcbcpIde .card img {
  width: 100%;
  max-width: 120px;
}
.cid-sdzcbcpIde .mbr-text,
.cid-sdzcbcpIde .mbr-section-btn {
  color: #b1c2c9;
  text-align: center;
}
.cid-sdzcbcpIde H4 {
  color: #b1c2c9;
}
.cid-sdzcbcpIde H3 {
  color: #000000;
}
.cid-sdovhGKlCY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-sdovhGKlCY .mbr-iconfont {
  font-size: 3rem;
  color: #d58f76;
  margin-right: 1.5rem;
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff;
  margin: auto;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-sdovhGKlCY .card-wrapper {
    padding: 0 3rem;
  }
}
.cid-sdovhGKlCY .card-title {
  color: #ffffff;
}
.cid-sdovhGKlCY .card {
  border-radius: 0;
  width: 100%;
}
.cid-sdovhGKlCY .card2 {
  border-right: 1px solid #ffffff;
}
.cid-sdovhGKlCY .card1 {
  border-right: 1px solid #ffffff;
}
.cid-sdovhGKlCY h4 {
  margin: 0;
}
.cid-sdovhGKlCY .card-text {
  color: #ffffff;
}
.cid-sdovhGKlCY .mbr-text {
  color: #200960;
}
@media (max-width: 991px) {
  .cid-sdovhGKlCY .card {
    border: 0px;
    margin-bottom: 2rem;
  }
}
.cid-s7VLKjTzbp .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-s7VLKjTzbp .navbar-fixed-top {
  padding-top: 0;
}
.cid-s7VLKjTzbp .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-s7VLKjTzbp .collapse {
  justify-content: space-between !important;
}
.cid-s7VLKjTzbp .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-s7VLKjTzbp .mbr-iconfont {
  cursor: pointer;
}
.cid-s7VLKjTzbp .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-s7VLKjTzbp .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #b1c2c9;
  border-radius: 50%;
}
.cid-s7VLKjTzbp .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-s7VLKjTzbp .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s7VLKjTzbp .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s7VLKjTzbp .menu-content-top {
  background: #b1c2c9;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-s7VLKjTzbp .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-s7VLKjTzbp .dropdown-item,
.cid-s7VLKjTzbp .nav-link,
.cid-s7VLKjTzbp .brand-name {
  font-style: normal;
}
.cid-s7VLKjTzbp .dropdown-item:hover,
.cid-s7VLKjTzbp .nav-link:hover,
.cid-s7VLKjTzbp .brand-name:hover {
  color: #b1c2c9 !important;
}
.cid-s7VLKjTzbp .dropdown-menu {
  background-color: #82786e;
}
.cid-s7VLKjTzbp .dropdown-item:active {
  background-color: #82786e;
}
.cid-s7VLKjTzbp .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-s7VLKjTzbp .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s7VLKjTzbp .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s7VLKjTzbp .content-text {
  margin-bottom: 0;
}
.cid-s7VLKjTzbp .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-s7VLKjTzbp .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #b1c2c9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-s7VLKjTzbp .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-s7VLKjTzbp .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-s7VLKjTzbp .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s7VLKjTzbp .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s7VLKjTzbp .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-s7VLKjTzbp .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s7VLKjTzbp .nav-dropdown .link {
  font-weight: 400;
}
.cid-s7VLKjTzbp .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-s7VLKjTzbp .content-right-side {
  text-align: center;
}
.cid-s7VLKjTzbp .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-s7VLKjTzbp .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-s7VLKjTzbp .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-s7VLKjTzbp .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-s7VLKjTzbp .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-s7VLKjTzbp .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s7VLKjTzbp .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-s7VLKjTzbp .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-s7VLKjTzbp .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-s7VLKjTzbp .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-s7VLKjTzbp .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-s7VLKjTzbp .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-s7VLKjTzbp .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-s7VLKjTzbp .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-s7VLKjTzbp .navbar {
    display: block;
    padding: 0;
  }
  .cid-s7VLKjTzbp .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-s7VLKjTzbp .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-s7VLKjTzbp .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-s7VLKjTzbp .navbar-toggler {
    display: none;
  }
}
.cid-s7VLKjTzbp .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-s7VLKjTzbp .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-s7VLKjTzbp .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-s7VLKjTzbp .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-s7VLKjTzbp .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-s7VLKjTzbp .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s7VLKjTzbp .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-s7VLKjTzbp .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s7VLKjTzbp .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s7VLKjTzbp .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-s7VLKjTzbp .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-s7VLKjTzbp .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s7VLKjTzbp .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s7VLKjTzbp .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s7VLKjTzbp .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s7VLKjTzbp button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-s7VLKjTzbp button.navbar-toggler:focus {
  outline: none;
}
.cid-s7VLKjTzbp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #200960;
}
.cid-s7VLKjTzbp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-s7VLKjTzbp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s7VLKjTzbp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s7VLKjTzbp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-s7VLKjTzbp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s7VLKjTzbp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-s7VLKjTzbp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-s7VLKjTzbp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s7VLKjTzbp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s7VLKjTzbp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s7VLKjTzbp .collapsed .btn {
  display: flex;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse.collapsing,
.cid-s7VLKjTzbp .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s7VLKjTzbp .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s7VLKjTzbp .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s7VLKjTzbp .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-s7VLKjTzbp .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s7VLKjTzbp .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-s7VLKjTzbp .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s7VLKjTzbp .collapsed button.navbar-toggler {
  display: block;
}
.cid-s7VLKjTzbp .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-s7VLKjTzbp .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-s7VLKjTzbp .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-s7VLKjTzbp .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s7VLKjTzbp .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s7VLKjTzbp .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-s7VLKjTzbp .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-s7VLKjTzbp .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-s7VLKjTzbp .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-s7VLKjTzbp .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s7VLKjTzbp .navbar-collapse.collapsing,
  .cid-s7VLKjTzbp .navbar-collapse.show {
    display: block !important;
  }
  .cid-s7VLKjTzbp .navbar-collapse.collapsing .navbar-nav,
  .cid-s7VLKjTzbp .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s7VLKjTzbp .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s7VLKjTzbp .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s7VLKjTzbp .navbar-collapse.collapsing .navbar-buttons,
  .cid-s7VLKjTzbp .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-s7VLKjTzbp .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s7VLKjTzbp .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s7VLKjTzbp img {
    height: 3.8rem !important;
  }
  .cid-s7VLKjTzbp .btn {
    display: flex;
  }
  .cid-s7VLKjTzbp button.navbar-toggler {
    display: block;
  }
  .cid-s7VLKjTzbp .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-s7VLKjTzbp .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-s7VLKjTzbp .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-s7VLKjTzbp .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s7VLKjTzbp .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s7VLKjTzbp .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-s7VLKjTzbp .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-s7VLKjTzbp .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-s7VLKjTzbp .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-s7VLKjTzbp .nav-link:focus {
  outline: none;
}
.cid-s7VLKjTzbp .navbar-toggler {
  position: relative;
}
.cid-s7VLKjTzbp .dropdown-item.active,
.cid-s7VLKjTzbp .dropdown-item:active {
  color: initial;
}
.cid-s7VLKjTzbp .widget-title,
.cid-s7VLKjTzbp .widget-icon {
  color: #ffffff;
}
.cid-s7VLKjTzbp .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-s7VLKjTzbp .menu-logo {
    display: none;
  }
  .cid-s7VLKjTzbp .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-s7VLKjTzbp .nav-item:before {
    content: none;
  }
  .cid-s7VLKjTzbp .navbar {
    padding: 0;
  }
  .cid-s7VLKjTzbp .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-s7VLKjTzbp button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sdyK9JaeND {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #1e1e1e;
}
@media (min-width: 1500px) {
  .cid-sdyK9JaeND .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sdyK9JaeND .copyright,
  .cid-sdyK9JaeND .col-lg-1 {
    margin-bottom: 1rem;
  }
}
.cid-sdyK9JaeND .col-lg-1 {
  max-width: fit-content;
  padding: 0;
}
.cid-sdyK9JaeND .mbr-text {
  color: #cccccc;
  text-align: left;
}
.cid-sdoFXaHOV5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #b1c2c9;
}
.cid-sdoFXaHOV5 .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdoFXaHOV5 .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-sdoFXaHOV5 .mbr-list {
  margin: 0;
}
.cid-sdoFXaHOV5 .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-sdoFXaHOV5 .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-sdoFXaHOV5 .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-sdoFXaHOV5 .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-sdoFXaHOV5 .list-inline-item,
.cid-sdoFXaHOV5 .mbr-list,
.cid-sdoFXaHOV5 .first-column {
  text-align: left;
}
.cid-sdoFXc2QPj {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-sdoFXc2QPj H4 {
  color: #000000;
}
.cid-sdzcBiBakq {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-sdzcBiBakq img {
  width: 120px;
  margin: auto;
}
.cid-sdzcBiBakq .card {
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.cid-sdzcBiBakq .card img {
  width: 100%;
  max-width: 120px;
}
.cid-sdzcBiBakq .mbr-text,
.cid-sdzcBiBakq .mbr-section-btn {
  color: #b1c2c9;
  text-align: center;
}
.cid-sdzcBiBakq H4 {
  color: #b1c2c9;
}
.cid-sdzcBiBakq H3 {
  color: #000000;
}
.cid-sdoFXdIntp {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-sdoFXdIntp .mbr-iconfont {
  font-size: 3rem;
  color: #d58f76;
  margin-right: 1.5rem;
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff;
  margin: auto;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-sdoFXdIntp .card-wrapper {
    padding: 0 3rem;
  }
}
.cid-sdoFXdIntp .card-title {
  color: #ffffff;
}
.cid-sdoFXdIntp .card {
  border-radius: 0;
  width: 100%;
}
.cid-sdoFXdIntp .card2 {
  border-right: 1px solid #ffffff;
}
.cid-sdoFXdIntp .card1 {
  border-right: 1px solid #ffffff;
}
.cid-sdoFXdIntp h4 {
  margin: 0;
}
.cid-sdoFXdIntp .card-text {
  color: #ffffff;
}
.cid-sdoFXdIntp .mbr-text {
  color: #200960;
}
@media (max-width: 991px) {
  .cid-sdoFXdIntp .card {
    border: 0px;
    margin-bottom: 2rem;
  }
}
.cid-sdoFXfteM6 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sdoFXfteM6 .navbar-fixed-top {
  padding-top: 0;
}
.cid-sdoFXfteM6 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sdoFXfteM6 .collapse {
  justify-content: space-between !important;
}
.cid-sdoFXfteM6 .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-sdoFXfteM6 .mbr-iconfont {
  cursor: pointer;
}
.cid-sdoFXfteM6 .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-sdoFXfteM6 .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #b1c2c9;
  border-radius: 50%;
}
.cid-sdoFXfteM6 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sdoFXfteM6 .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-sdoFXfteM6 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdoFXfteM6 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sdoFXfteM6 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdoFXfteM6 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdoFXfteM6 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdoFXfteM6 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdoFXfteM6 .menu-content-top {
  background: #b1c2c9;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-sdoFXfteM6 .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-sdoFXfteM6 .dropdown-item,
.cid-sdoFXfteM6 .nav-link,
.cid-sdoFXfteM6 .brand-name {
  font-style: normal;
}
.cid-sdoFXfteM6 .dropdown-item:hover,
.cid-sdoFXfteM6 .nav-link:hover,
.cid-sdoFXfteM6 .brand-name:hover {
  color: #b1c2c9 !important;
}
.cid-sdoFXfteM6 .dropdown-menu {
  background-color: #82786e;
}
.cid-sdoFXfteM6 .dropdown-item:active {
  background-color: #82786e;
}
.cid-sdoFXfteM6 .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sdoFXfteM6 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sdoFXfteM6 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdoFXfteM6 .content-text {
  margin-bottom: 0;
}
.cid-sdoFXfteM6 .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sdoFXfteM6 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #b1c2c9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sdoFXfteM6 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sdoFXfteM6 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sdoFXfteM6 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdoFXfteM6 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdoFXfteM6 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sdoFXfteM6 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdoFXfteM6 .nav-dropdown .link {
  font-weight: 400;
}
.cid-sdoFXfteM6 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sdoFXfteM6 .content-right-side {
  text-align: center;
}
.cid-sdoFXfteM6 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sdoFXfteM6 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sdoFXfteM6 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-sdoFXfteM6 .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-sdoFXfteM6 .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-sdoFXfteM6 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdoFXfteM6 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sdoFXfteM6 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sdoFXfteM6 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sdoFXfteM6 .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sdoFXfteM6 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sdoFXfteM6 .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-sdoFXfteM6 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdoFXfteM6 .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sdoFXfteM6 .navbar {
    display: block;
    padding: 0;
  }
  .cid-sdoFXfteM6 .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdoFXfteM6 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sdoFXfteM6 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sdoFXfteM6 .navbar-toggler {
    display: none;
  }
}
.cid-sdoFXfteM6 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sdoFXfteM6 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdoFXfteM6 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sdoFXfteM6 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sdoFXfteM6 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdoFXfteM6 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdoFXfteM6 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdoFXfteM6 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sdoFXfteM6 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdoFXfteM6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdoFXfteM6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdoFXfteM6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sdoFXfteM6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sdoFXfteM6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdoFXfteM6 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdoFXfteM6 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdoFXfteM6 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sdoFXfteM6 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sdoFXfteM6 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdoFXfteM6 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdoFXfteM6 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdoFXfteM6 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdoFXfteM6 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-sdoFXfteM6 button.navbar-toggler:focus {
  outline: none;
}
.cid-sdoFXfteM6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #200960;
}
.cid-sdoFXfteM6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sdoFXfteM6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdoFXfteM6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdoFXfteM6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sdoFXfteM6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdoFXfteM6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sdoFXfteM6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sdoFXfteM6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdoFXfteM6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sdoFXfteM6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sdoFXfteM6 .collapsed .btn {
  display: flex;
}
.cid-sdoFXfteM6 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdoFXfteM6 .collapsed .navbar-collapse.collapsing,
.cid-sdoFXfteM6 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdoFXfteM6 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdoFXfteM6 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdoFXfteM6 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdoFXfteM6 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdoFXfteM6 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdoFXfteM6 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sdoFXfteM6 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdoFXfteM6 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sdoFXfteM6 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdoFXfteM6 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdoFXfteM6 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sdoFXfteM6 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sdoFXfteM6 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sdoFXfteM6 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdoFXfteM6 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdoFXfteM6 .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sdoFXfteM6 .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-sdoFXfteM6 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sdoFXfteM6 .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sdoFXfteM6 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdoFXfteM6 .navbar-collapse.collapsing,
  .cid-sdoFXfteM6 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdoFXfteM6 .navbar-collapse.collapsing .navbar-nav,
  .cid-sdoFXfteM6 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdoFXfteM6 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdoFXfteM6 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdoFXfteM6 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdoFXfteM6 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sdoFXfteM6 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdoFXfteM6 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdoFXfteM6 img {
    height: 3.8rem !important;
  }
  .cid-sdoFXfteM6 .btn {
    display: flex;
  }
  .cid-sdoFXfteM6 button.navbar-toggler {
    display: block;
  }
  .cid-sdoFXfteM6 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sdoFXfteM6 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdoFXfteM6 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sdoFXfteM6 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdoFXfteM6 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdoFXfteM6 .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sdoFXfteM6 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sdoFXfteM6 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sdoFXfteM6 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sdoFXfteM6 .nav-link:focus {
  outline: none;
}
.cid-sdoFXfteM6 .navbar-toggler {
  position: relative;
}
.cid-sdoFXfteM6 .dropdown-item.active,
.cid-sdoFXfteM6 .dropdown-item:active {
  color: initial;
}
.cid-sdoFXfteM6 .widget-title,
.cid-sdoFXfteM6 .widget-icon {
  color: #ffffff;
}
.cid-sdoFXfteM6 .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-sdoFXfteM6 .menu-logo {
    display: none;
  }
  .cid-sdoFXfteM6 .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-sdoFXfteM6 .nav-item:before {
    content: none;
  }
  .cid-sdoFXfteM6 .navbar {
    padding: 0;
  }
  .cid-sdoFXfteM6 .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdoFXfteM6 button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sdyK9JaeND {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #1e1e1e;
}
@media (min-width: 1500px) {
  .cid-sdyK9JaeND .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sdyK9JaeND .copyright,
  .cid-sdyK9JaeND .col-lg-1 {
    margin-bottom: 1rem;
  }
}
.cid-sdyK9JaeND .col-lg-1 {
  max-width: fit-content;
  padding: 0;
}
.cid-sdyK9JaeND .mbr-text {
  color: #cccccc;
  text-align: left;
}
.cid-sdzaXSsAfI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #b1c2c9;
}
.cid-sdzaXSsAfI .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdzaXSsAfI .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-sdzaXSsAfI .mbr-list {
  margin: 0;
}
.cid-sdzaXSsAfI .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-sdzaXSsAfI .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-sdzaXSsAfI .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-sdzaXSsAfI .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-sdzaXSsAfI .list-inline-item,
.cid-sdzaXSsAfI .mbr-list,
.cid-sdzaXSsAfI .first-column {
  text-align: left;
}
.cid-sdzaXTdhiy {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-sdzaXTdhiy H4 {
  color: #000000;
}
.cid-sdzaXTHu1N {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-sdzaXTHu1N img {
  width: 120px;
  margin: auto;
}
.cid-sdzaXTHu1N .card {
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.cid-sdzaXTHu1N .card img {
  width: 100%;
  max-width: 120px;
}
.cid-sdzaXTHu1N .mbr-text,
.cid-sdzaXTHu1N .mbr-section-btn {
  color: #b1c2c9;
  text-align: center;
}
.cid-sdzaXTHu1N H4 {
  color: #b1c2c9;
}
.cid-sdzaXTHu1N H3 {
  color: #000000;
}
.cid-sdzaXU7erP {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-sdzaXU7erP .mbr-iconfont {
  font-size: 3rem;
  color: #d58f76;
  margin-right: 1.5rem;
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff;
  margin: auto;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-sdzaXU7erP .card-wrapper {
    padding: 0 3rem;
  }
}
.cid-sdzaXU7erP .card-title {
  color: #ffffff;
}
.cid-sdzaXU7erP .card {
  border-radius: 0;
  width: 100%;
}
.cid-sdzaXU7erP .card2 {
  border-right: 1px solid #ffffff;
}
.cid-sdzaXU7erP .card1 {
  border-right: 1px solid #ffffff;
}
.cid-sdzaXU7erP h4 {
  margin: 0;
}
.cid-sdzaXU7erP .card-text {
  color: #ffffff;
}
.cid-sdzaXU7erP .mbr-text {
  color: #200960;
}
@media (max-width: 991px) {
  .cid-sdzaXU7erP .card {
    border: 0px;
    margin-bottom: 2rem;
  }
}
.cid-sdzaXUJFzV .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sdzaXUJFzV .navbar-fixed-top {
  padding-top: 0;
}
.cid-sdzaXUJFzV .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sdzaXUJFzV .collapse {
  justify-content: space-between !important;
}
.cid-sdzaXUJFzV .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-sdzaXUJFzV .mbr-iconfont {
  cursor: pointer;
}
.cid-sdzaXUJFzV .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-sdzaXUJFzV .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #b1c2c9;
  border-radius: 50%;
}
.cid-sdzaXUJFzV .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sdzaXUJFzV .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-sdzaXUJFzV .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdzaXUJFzV .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sdzaXUJFzV .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdzaXUJFzV .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdzaXUJFzV .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdzaXUJFzV .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdzaXUJFzV .menu-content-top {
  background: #b1c2c9;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-sdzaXUJFzV .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-sdzaXUJFzV .dropdown-item,
.cid-sdzaXUJFzV .nav-link,
.cid-sdzaXUJFzV .brand-name {
  font-style: normal;
}
.cid-sdzaXUJFzV .dropdown-item:hover,
.cid-sdzaXUJFzV .nav-link:hover,
.cid-sdzaXUJFzV .brand-name:hover {
  color: #b1c2c9 !important;
}
.cid-sdzaXUJFzV .dropdown-menu {
  background-color: #82786e;
}
.cid-sdzaXUJFzV .dropdown-item:active {
  background-color: #82786e;
}
.cid-sdzaXUJFzV .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sdzaXUJFzV .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sdzaXUJFzV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdzaXUJFzV .content-text {
  margin-bottom: 0;
}
.cid-sdzaXUJFzV .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sdzaXUJFzV .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #b1c2c9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sdzaXUJFzV .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sdzaXUJFzV .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sdzaXUJFzV .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdzaXUJFzV .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdzaXUJFzV .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sdzaXUJFzV .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdzaXUJFzV .nav-dropdown .link {
  font-weight: 400;
}
.cid-sdzaXUJFzV .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sdzaXUJFzV .content-right-side {
  text-align: center;
}
.cid-sdzaXUJFzV .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sdzaXUJFzV .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sdzaXUJFzV .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-sdzaXUJFzV .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-sdzaXUJFzV .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-sdzaXUJFzV .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdzaXUJFzV .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sdzaXUJFzV .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sdzaXUJFzV .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sdzaXUJFzV .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sdzaXUJFzV .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sdzaXUJFzV .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-sdzaXUJFzV .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdzaXUJFzV .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sdzaXUJFzV .navbar {
    display: block;
    padding: 0;
  }
  .cid-sdzaXUJFzV .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdzaXUJFzV .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sdzaXUJFzV .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sdzaXUJFzV .navbar-toggler {
    display: none;
  }
}
.cid-sdzaXUJFzV .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sdzaXUJFzV .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdzaXUJFzV .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sdzaXUJFzV .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sdzaXUJFzV .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdzaXUJFzV .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdzaXUJFzV .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdzaXUJFzV .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sdzaXUJFzV .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdzaXUJFzV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdzaXUJFzV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdzaXUJFzV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sdzaXUJFzV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sdzaXUJFzV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdzaXUJFzV .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdzaXUJFzV .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdzaXUJFzV .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sdzaXUJFzV .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sdzaXUJFzV .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdzaXUJFzV .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdzaXUJFzV .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdzaXUJFzV .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdzaXUJFzV button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-sdzaXUJFzV button.navbar-toggler:focus {
  outline: none;
}
.cid-sdzaXUJFzV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #200960;
}
.cid-sdzaXUJFzV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sdzaXUJFzV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdzaXUJFzV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdzaXUJFzV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sdzaXUJFzV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdzaXUJFzV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sdzaXUJFzV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sdzaXUJFzV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdzaXUJFzV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sdzaXUJFzV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sdzaXUJFzV .collapsed .btn {
  display: flex;
}
.cid-sdzaXUJFzV .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdzaXUJFzV .collapsed .navbar-collapse.collapsing,
.cid-sdzaXUJFzV .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdzaXUJFzV .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdzaXUJFzV .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdzaXUJFzV .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdzaXUJFzV .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdzaXUJFzV .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdzaXUJFzV .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sdzaXUJFzV .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdzaXUJFzV .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sdzaXUJFzV .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdzaXUJFzV .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdzaXUJFzV .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sdzaXUJFzV .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sdzaXUJFzV .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sdzaXUJFzV .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdzaXUJFzV .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdzaXUJFzV .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sdzaXUJFzV .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-sdzaXUJFzV .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sdzaXUJFzV .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sdzaXUJFzV .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdzaXUJFzV .navbar-collapse.collapsing,
  .cid-sdzaXUJFzV .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdzaXUJFzV .navbar-collapse.collapsing .navbar-nav,
  .cid-sdzaXUJFzV .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdzaXUJFzV .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdzaXUJFzV .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdzaXUJFzV .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdzaXUJFzV .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sdzaXUJFzV .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdzaXUJFzV .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdzaXUJFzV img {
    height: 3.8rem !important;
  }
  .cid-sdzaXUJFzV .btn {
    display: flex;
  }
  .cid-sdzaXUJFzV button.navbar-toggler {
    display: block;
  }
  .cid-sdzaXUJFzV .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sdzaXUJFzV .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdzaXUJFzV .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sdzaXUJFzV .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdzaXUJFzV .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdzaXUJFzV .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sdzaXUJFzV .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sdzaXUJFzV .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sdzaXUJFzV .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sdzaXUJFzV .nav-link:focus {
  outline: none;
}
.cid-sdzaXUJFzV .navbar-toggler {
  position: relative;
}
.cid-sdzaXUJFzV .dropdown-item.active,
.cid-sdzaXUJFzV .dropdown-item:active {
  color: initial;
}
.cid-sdzaXUJFzV .widget-title,
.cid-sdzaXUJFzV .widget-icon {
  color: #ffffff;
}
.cid-sdzaXUJFzV .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-sdzaXUJFzV .menu-logo {
    display: none;
  }
  .cid-sdzaXUJFzV .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-sdzaXUJFzV .nav-item:before {
    content: none;
  }
  .cid-sdzaXUJFzV .navbar {
    padding: 0;
  }
  .cid-sdzaXUJFzV .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdzaXUJFzV button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sdzaXVIy7S {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #1e1e1e;
}
@media (min-width: 1500px) {
  .cid-sdzaXVIy7S .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sdzaXVIy7S .copyright,
  .cid-sdzaXVIy7S .col-lg-1 {
    margin-bottom: 1rem;
  }
}
.cid-sdzaXVIy7S .col-lg-1 {
  max-width: fit-content;
  padding: 0;
}
.cid-sdzaXVIy7S .mbr-text {
  color: #cccccc;
  text-align: left;
}
.cid-sdzb4LXJxS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #b1c2c9;
}
.cid-sdzb4LXJxS .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdzb4LXJxS .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-sdzb4LXJxS .mbr-list {
  margin: 0;
}
.cid-sdzb4LXJxS .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-sdzb4LXJxS .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-sdzb4LXJxS .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-sdzb4LXJxS .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-sdzb4LXJxS .list-inline-item,
.cid-sdzb4LXJxS .mbr-list,
.cid-sdzb4LXJxS .first-column {
  text-align: left;
}
.cid-sdzb4MI39h {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-sdzb4MI39h H4 {
  color: #000000;
}
.cid-sdzb4NcbpB {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-sdzb4NcbpB img {
  width: 120px;
  margin: auto;
}
.cid-sdzb4NcbpB .card {
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.cid-sdzb4NcbpB .card img {
  width: 100%;
  max-width: 120px;
}
.cid-sdzb4NcbpB .mbr-text,
.cid-sdzb4NcbpB .mbr-section-btn {
  color: #b1c2c9;
  text-align: center;
}
.cid-sdzb4NcbpB H4 {
  color: #b1c2c9;
}
.cid-sdzb4NcbpB H3 {
  color: #000000;
}
.cid-sdzb4NC0Bn {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #b1c2c9;
}
.cid-sdzb4NC0Bn .mbr-iconfont {
  font-size: 3rem;
  color: #d58f76;
  margin-right: 1.5rem;
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff;
  margin: auto;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-sdzb4NC0Bn .card-wrapper {
    padding: 0 3rem;
  }
}
.cid-sdzb4NC0Bn .card-title {
  color: #ffffff;
}
.cid-sdzb4NC0Bn .card {
  border-radius: 0;
  width: 100%;
}
.cid-sdzb4NC0Bn .card2 {
  border-right: 1px solid #ffffff;
}
.cid-sdzb4NC0Bn .card1 {
  border-right: 1px solid #ffffff;
}
.cid-sdzb4NC0Bn h4 {
  margin: 0;
}
.cid-sdzb4NC0Bn .card-text {
  color: #ffffff;
}
.cid-sdzb4NC0Bn .mbr-text {
  color: #200960;
}
@media (max-width: 991px) {
  .cid-sdzb4NC0Bn .card {
    border: 0px;
    margin-bottom: 2rem;
  }
}
.cid-sdzb4OhyPe .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-sdzb4OhyPe .navbar-fixed-top {
  padding-top: 0;
}
.cid-sdzb4OhyPe .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sdzb4OhyPe .collapse {
  justify-content: space-between !important;
}
.cid-sdzb4OhyPe .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-sdzb4OhyPe .mbr-iconfont {
  cursor: pointer;
}
.cid-sdzb4OhyPe .nav-item {
  position: relative;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-sdzb4OhyPe .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  background: #b1c2c9;
  border-radius: 50%;
}
.cid-sdzb4OhyPe .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sdzb4OhyPe .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-sdzb4OhyPe .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdzb4OhyPe .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sdzb4OhyPe .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sdzb4OhyPe .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sdzb4OhyPe .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sdzb4OhyPe .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sdzb4OhyPe .menu-content-top {
  background: #b1c2c9;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.cid-sdzb4OhyPe .dropdown-item {
  padding: 0.4rem 1.8rem;
}
.cid-sdzb4OhyPe .dropdown-item,
.cid-sdzb4OhyPe .nav-link,
.cid-sdzb4OhyPe .brand-name {
  font-style: normal;
}
.cid-sdzb4OhyPe .dropdown-item:hover,
.cid-sdzb4OhyPe .nav-link:hover,
.cid-sdzb4OhyPe .brand-name:hover {
  color: #b1c2c9 !important;
}
.cid-sdzb4OhyPe .dropdown-menu {
  background-color: #82786e;
}
.cid-sdzb4OhyPe .dropdown-item:active {
  background-color: #82786e;
}
.cid-sdzb4OhyPe .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-sdzb4OhyPe .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sdzb4OhyPe .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdzb4OhyPe .content-text {
  margin-bottom: 0;
}
.cid-sdzb4OhyPe .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sdzb4OhyPe .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #b1c2c9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sdzb4OhyPe .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sdzb4OhyPe .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sdzb4OhyPe .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdzb4OhyPe .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sdzb4OhyPe .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sdzb4OhyPe .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdzb4OhyPe .nav-dropdown .link {
  font-weight: 400;
}
.cid-sdzb4OhyPe .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sdzb4OhyPe .content-right-side {
  text-align: center;
}
.cid-sdzb4OhyPe .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sdzb4OhyPe .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sdzb4OhyPe .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-sdzb4OhyPe .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-sdzb4OhyPe .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-sdzb4OhyPe .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdzb4OhyPe .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sdzb4OhyPe .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sdzb4OhyPe .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sdzb4OhyPe .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sdzb4OhyPe .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sdzb4OhyPe .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-sdzb4OhyPe .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdzb4OhyPe .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sdzb4OhyPe .navbar {
    display: block;
    padding: 0;
  }
  .cid-sdzb4OhyPe .navbar .menu-logo {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sdzb4OhyPe .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sdzb4OhyPe .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sdzb4OhyPe .navbar-toggler {
    display: none;
  }
}
.cid-sdzb4OhyPe .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sdzb4OhyPe .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sdzb4OhyPe .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sdzb4OhyPe .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sdzb4OhyPe .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sdzb4OhyPe .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdzb4OhyPe .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sdzb4OhyPe .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sdzb4OhyPe .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdzb4OhyPe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdzb4OhyPe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdzb4OhyPe .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sdzb4OhyPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sdzb4OhyPe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdzb4OhyPe .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sdzb4OhyPe .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdzb4OhyPe .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sdzb4OhyPe .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sdzb4OhyPe .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sdzb4OhyPe .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sdzb4OhyPe .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sdzb4OhyPe .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sdzb4OhyPe button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1.6rem 1rem;
}
.cid-sdzb4OhyPe button.navbar-toggler:focus {
  outline: none;
}
.cid-sdzb4OhyPe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #200960;
}
.cid-sdzb4OhyPe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sdzb4OhyPe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdzb4OhyPe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sdzb4OhyPe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sdzb4OhyPe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdzb4OhyPe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sdzb4OhyPe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sdzb4OhyPe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sdzb4OhyPe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sdzb4OhyPe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sdzb4OhyPe .collapsed .btn {
  display: flex;
}
.cid-sdzb4OhyPe .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sdzb4OhyPe .collapsed .navbar-collapse.collapsing,
.cid-sdzb4OhyPe .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sdzb4OhyPe .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sdzb4OhyPe .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sdzb4OhyPe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sdzb4OhyPe .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sdzb4OhyPe .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sdzb4OhyPe .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sdzb4OhyPe .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sdzb4OhyPe .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sdzb4OhyPe .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sdzb4OhyPe .collapsed button.navbar-toggler {
  display: block;
}
.cid-sdzb4OhyPe .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sdzb4OhyPe .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sdzb4OhyPe .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sdzb4OhyPe .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sdzb4OhyPe .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sdzb4OhyPe .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sdzb4OhyPe .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-sdzb4OhyPe .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sdzb4OhyPe .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-sdzb4OhyPe .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sdzb4OhyPe .navbar-collapse.collapsing,
  .cid-sdzb4OhyPe .navbar-collapse.show {
    display: block !important;
  }
  .cid-sdzb4OhyPe .navbar-collapse.collapsing .navbar-nav,
  .cid-sdzb4OhyPe .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sdzb4OhyPe .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sdzb4OhyPe .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sdzb4OhyPe .navbar-collapse.collapsing .navbar-buttons,
  .cid-sdzb4OhyPe .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sdzb4OhyPe .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sdzb4OhyPe .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sdzb4OhyPe img {
    height: 3.8rem !important;
  }
  .cid-sdzb4OhyPe .btn {
    display: flex;
  }
  .cid-sdzb4OhyPe button.navbar-toggler {
    display: block;
  }
  .cid-sdzb4OhyPe .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sdzb4OhyPe .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdzb4OhyPe .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sdzb4OhyPe .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sdzb4OhyPe .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sdzb4OhyPe .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sdzb4OhyPe .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sdzb4OhyPe .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sdzb4OhyPe .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sdzb4OhyPe .nav-link:focus {
  outline: none;
}
.cid-sdzb4OhyPe .navbar-toggler {
  position: relative;
}
.cid-sdzb4OhyPe .dropdown-item.active,
.cid-sdzb4OhyPe .dropdown-item:active {
  color: initial;
}
.cid-sdzb4OhyPe .widget-title,
.cid-sdzb4OhyPe .widget-icon {
  color: #ffffff;
}
.cid-sdzb4OhyPe .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-sdzb4OhyPe .menu-logo {
    display: none;
  }
  .cid-sdzb4OhyPe .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-sdzb4OhyPe .nav-item:before {
    content: none;
  }
  .cid-sdzb4OhyPe .navbar {
    padding: 0;
  }
  .cid-sdzb4OhyPe .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdzb4OhyPe button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sdzb4Pkuth {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #1e1e1e;
}
@media (min-width: 1500px) {
  .cid-sdzb4Pkuth .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sdzb4Pkuth .copyright,
  .cid-sdzb4Pkuth .col-lg-1 {
    margin-bottom: 1rem;
  }
}
.cid-sdzb4Pkuth .col-lg-1 {
  max-width: fit-content;
  padding: 0;
}
.cid-sdzb4Pkuth .mbr-text {
  color: #cccccc;
  text-align: left;
}
