body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #475577 !important;
}
.bg-info {
  background-color: #a38f84 !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info,
.btn-info:active {
  background-color: #a38f84 !important;
  border-color: #a38f84 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #7d695d !important;
  border-color: #7d695d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #7d695d !important;
  border-color: #7d695d !important;
}
.btn-success,
.btn-success:active {
  background-color: #475577 !important;
  border-color: #475577 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a3347 !important;
  border-color: #2a3347 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a3347 !important;
  border-color: #2a3347 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #6e5c53;
  color: #6e5c53;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #a38f84;
  border-color: #a38f84;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a38f84 !important;
  border-color: #a38f84 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #212737;
  color: #212737;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #475577;
  border-color: #475577;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #475577 !important;
  border-color: #475577 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #475577 !important;
}
.text-info {
  color: #a38f84 !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0b566f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #212737 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #6e5c53 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #a38f84;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #8695b7;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dad1cd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #149dcc;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #149dcc;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #149dcc;
  border-bottom-color: #149dcc;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #149dcc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23149dcc' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.3;
}
.cid-svGobdMVGh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffffff;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) 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-svGobdMVGh .navbar-buttons {
  flex-wrap: wrap;
}
.cid-svGobdMVGh .nav-item,
.cid-svGobdMVGh .nav-link,
.cid-svGobdMVGh .navbar-caption {
  font-weight: normal;
}
.cid-svGobdMVGh .nav-item:focus,
.cid-svGobdMVGh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-svGobdMVGh .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-svGobdMVGh .nav-item .nav-link {
    position: relative;
  }
  .cid-svGobdMVGh .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffffff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-svGobdMVGh .nav-item:hover .nav-link:before,
  .cid-svGobdMVGh .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-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-svGobdMVGh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #a38f84;
}
.cid-svGobdMVGh .navbar.opened {
  transition: all 0.3s;
  background: #a38f84 !important;
}
.cid-svGobdMVGh .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-svGobdMVGh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-svGobdMVGh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svGobdMVGh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-svGobdMVGh .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-svGobdMVGh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svGobdMVGh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-svGobdMVGh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-svGobdMVGh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-svGobdMVGh .navbar.navbar-short {
  background: #a38f84 !important;
  min-height: 60px;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svGobdMVGh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-svGobdMVGh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-svGobdMVGh .dropdown-item.active,
.cid-svGobdMVGh .dropdown-item:active {
  background-color: transparent;
}
.cid-svGobdMVGh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38f84;
  z-index: 2;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svGobdMVGh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svGobdMVGh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svGobdMVGh .navbar-buttons {
  text-align: center;
}
.cid-svGobdMVGh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-svGobdMVGh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-svGobdMVGh .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-svGobdMVGh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh a.nav-link .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-svGobdMVGh a.nav-link:hover .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svGobdMVGh .navbar {
    height: 77px;
  }
  .cid-svGobdMVGh .navbar.opened {
    height: auto;
  }
  .cid-svGobdMVGh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svGytcJpSX .modal-body .close {
  background: #1b1b1b;
}
.cid-svGytcJpSX .modal-body .close span {
  font-style: normal;
}
.cid-svGytcJpSX .carousel-inner > .active,
.cid-svGytcJpSX .carousel-inner > .next,
.cid-svGytcJpSX .carousel-inner > .prev {
  display: flex;
}
.cid-svGytcJpSX .carousel-control .icon-next,
.cid-svGytcJpSX .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-svGytcJpSX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svGytcJpSX .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-svGytcJpSX .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-svGytcJpSX .boxed-slider > div {
  position: relative;
}
.cid-svGytcJpSX .container img {
  width: 100%;
}
.cid-svGytcJpSX .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-svGytcJpSX .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-svGytcJpSX .mbr-table-cell {
  padding: 0;
}
.cid-svGytcJpSX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-svGytcJpSX .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-svGytcJpSX .mbr-overlay {
  z-index: 1;
}
.cid-svGytcJpSX .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-svGytcJpSX .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-svGytcJpSX .carousel-item.active.right,
.cid-svGytcJpSX .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-svGytcJpSX .carousel-item.active.left,
.cid-svGytcJpSX .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-svGytcJpSX .carousel-item.active,
.cid-svGytcJpSX .carousel-item.next.left,
.cid-svGytcJpSX .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-svGytcJpSX .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-svGytcJpSX .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svGytcJpSX .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svGytcJpSX .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-svGytcJpSX .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-svGytcJpSX .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-svGytcJpSX .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-svGytcJpSX .mbr-slider .carousel-indicators li.active,
.cid-svGytcJpSX .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-svGytcJpSX .mbr-slider .carousel-indicators li::after,
.cid-svGytcJpSX .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-svGytcJpSX .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-svGytcJpSX .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-svGytcJpSX .mbr-slider > .container img {
  width: 100%;
}
.cid-svGytcJpSX .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-svGytcJpSX .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-svGytcJpSX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-svGytcJpSX .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-svGytcJpSX .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-svGytcJpSX .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-svGytcJpSX .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-svGytcJpSX .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-svGytcJpSX .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-svGytcJpSX .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-svGytcJpSX .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-svGytcJpSX .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-svGytcJpSX .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-svGu1dRIfM {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-svGu1dRIfM .btn {
  margin: 0 0 .5rem 0;
}
.cid-svGu1dRIfM H2 {
  color: #232323;
}
.cid-t0ZlvD0JRJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t0ZlvD0JRJ .mbr-text {
  color: #767676;
}
.cid-t0ZlvD0JRJ .card-subtitle {
  margin: 0;
}
.cid-t0ZlvD0JRJ .link {
  margin: 0;
}
.cid-t0ZlvD0JRJ .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-t0ZlvD0JRJ .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-t0ZlvD0JRJ img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-t0ZlvD0JRJ .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-t0ZlvD0JRJ .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-t0ZlvD0JRJ .card-img:hover:before {
  opacity: 0.4;
}
.cid-t0ZlvD0JRJ .card-img:hover img {
  transform: scale(1.05);
}
.cid-t0ZlvD0JRJ .row {
  justify-content: center;
}
.cid-t0ZlvD0JRJ .card {
  margin-bottom: 4rem;
}
.cid-t0ZlvD0JRJ .mbr-text,
.cid-t0ZlvD0JRJ .link {
  color: #232323;
}
.cid-svGGjf6NcS {
  padding-top: 105px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/dsc03259.jpg");
}
.cid-svGGjf6NcS .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 3rem;
}
.cid-svGGjf6NcS .carousel-item > div {
  width: 100%;
}
.cid-svGGjf6NcS .carousel-item.active,
.cid-svGGjf6NcS .carousel-item-next,
.cid-svGGjf6NcS .carousel-item-prev {
  display: flex;
}
.cid-svGGjf6NcS .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-svGGjf6NcS .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: #ffffff;
  opacity: .9;
}
.cid-svGGjf6NcS .carousel-controls a:hover span {
  opacity: 1;
}
.cid-svGGjf6NcS .signature,
.cid-svGGjf6NcS .desk {
  margin: 0;
}
.cid-svGGjf6NcS .mbr-text,
.cid-svGGjf6NcS .mbr-section-subtitle {
  color: #cccccc;
}
.cid-svGGjf6NcS .signature,
.cid-svGGjf6NcS .desk {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-svGGjf6NcS .carousel-item {
    padding: 0 5rem;
  }
}
@media (min-width: 768px) {
  .cid-svGGjf6NcS .carousel-controls a {
    width: 5%;
  }
}
.cid-svGGjf6NcS .mbr-section-title {
  text-align: center;
}
.cid-svGGjf6NcS .mbr-text {
  color: #ffffff;
}
.cid-svH9tPATV9 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/dsc03234.jpg");
}
.cid-ufyGlb6db7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .content {
    text-align: center;
  }
  .cid-ufyGlb6db7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ufyGlb6db7 .logo-subtitle {
  color: #8d97ad;
}
.cid-ufyGlb6db7 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ufyGlb6db7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ufyGlb6db7 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ufyGlb6db7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-ufyGlb6db7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ufyGlb6db7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ufyGlb6db7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufyGlb6db7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ufyGlb6db7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufyGlb6db7 .list-item {
  display: flex;
}
.cid-ufyGlb6db7 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-ufyGlb6db7 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-ufyGlb6db7 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-ufyGlb6db7 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-ufyGlb6db7 .logo-subtitle,
.cid-ufyGlb6db7 .media-wrap {
  color: #000000;
  text-align: center;
}
.cid-svGobdMVGh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffffff;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) 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-svGobdMVGh .navbar-buttons {
  flex-wrap: wrap;
}
.cid-svGobdMVGh .nav-item,
.cid-svGobdMVGh .nav-link,
.cid-svGobdMVGh .navbar-caption {
  font-weight: normal;
}
.cid-svGobdMVGh .nav-item:focus,
.cid-svGobdMVGh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-svGobdMVGh .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-svGobdMVGh .nav-item .nav-link {
    position: relative;
  }
  .cid-svGobdMVGh .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffffff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-svGobdMVGh .nav-item:hover .nav-link:before,
  .cid-svGobdMVGh .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-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-svGobdMVGh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #a38f84;
}
.cid-svGobdMVGh .navbar.opened {
  transition: all 0.3s;
  background: #a38f84 !important;
}
.cid-svGobdMVGh .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-svGobdMVGh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-svGobdMVGh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svGobdMVGh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-svGobdMVGh .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-svGobdMVGh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svGobdMVGh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-svGobdMVGh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-svGobdMVGh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-svGobdMVGh .navbar.navbar-short {
  background: #a38f84 !important;
  min-height: 60px;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svGobdMVGh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-svGobdMVGh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-svGobdMVGh .dropdown-item.active,
.cid-svGobdMVGh .dropdown-item:active {
  background-color: transparent;
}
.cid-svGobdMVGh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38f84;
  z-index: 2;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svGobdMVGh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svGobdMVGh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svGobdMVGh .navbar-buttons {
  text-align: center;
}
.cid-svGobdMVGh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-svGobdMVGh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-svGobdMVGh .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-svGobdMVGh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh a.nav-link .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-svGobdMVGh a.nav-link:hover .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 1;
  margin-left: -20px;
}
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svGobdMVGh .navbar {
    height: 77px;
  }
  .cid-svGobdMVGh .navbar.opened {
    height: auto;
  }
  .cid-svGobdMVGh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svMGyNvqSD {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03219.jpg");
}
.cid-svMGyNvqSD .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-svMGyNvqSD .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-svMGyNvqSD .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-svMGyNvqSD .mbr-text {
    text-align: center;
  }
}
.cid-svMGyNvqSD H1 {
  color: #000000;
}
.cid-svMGyNvqSD H3 {
  color: #000000;
}
.cid-svMGyNvqSD .mbr-text,
.cid-svMGyNvqSD .mbr-section-btn {
  color: #000000;
}
.cid-ufyIcd93lS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyIcd93lS .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyIcd93lS .mbr-text {
  color: #120c01;
}
.cid-ufyIcLv3WS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyIcLv3WS .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyIcLv3WS .mbr-text {
  color: #120c01;
}
.cid-ufyIdkGYaJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyIdkGYaJ .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyIdkGYaJ .mbr-text {
  color: #120c01;
}
.cid-svME67L9i5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svLe5b4O0X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svLe5b4O0X .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svLe5b4O0X .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svLe5b4O0X .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svLe5b4O0X .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svLe5b4O0X .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-svLe5b4O0X .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svLe5b4O0X .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svLe5b4O0X .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svLe5b4O0X .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-svMBX8ZXNb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svMBX8ZXNb .line {
  background-color: #a38f84;
  color: #a38f84;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svMBX8ZXNb .section-text {
  padding: 2rem 0;
}
.cid-svMBX8ZXNb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svMBX8ZXNb .inner-container {
    width: 100% !important;
  }
}
.cid-ufyGlb6db7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .content {
    text-align: center;
  }
  .cid-ufyGlb6db7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ufyGlb6db7 .logo-subtitle {
  color: #8d97ad;
}
.cid-ufyGlb6db7 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ufyGlb6db7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ufyGlb6db7 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ufyGlb6db7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-ufyGlb6db7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ufyGlb6db7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ufyGlb6db7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufyGlb6db7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ufyGlb6db7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufyGlb6db7 .list-item {
  display: flex;
}
.cid-ufyGlb6db7 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-ufyGlb6db7 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-ufyGlb6db7 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-ufyGlb6db7 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-ufyGlb6db7 .logo-subtitle,
.cid-ufyGlb6db7 .media-wrap {
  color: #000000;
  text-align: center;
}
.cid-svGobdMVGh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffffff;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) 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-svGobdMVGh .navbar-buttons {
  flex-wrap: wrap;
}
.cid-svGobdMVGh .nav-item,
.cid-svGobdMVGh .nav-link,
.cid-svGobdMVGh .navbar-caption {
  font-weight: normal;
}
.cid-svGobdMVGh .nav-item:focus,
.cid-svGobdMVGh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-svGobdMVGh .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-svGobdMVGh .nav-item .nav-link {
    position: relative;
  }
  .cid-svGobdMVGh .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffffff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-svGobdMVGh .nav-item:hover .nav-link:before,
  .cid-svGobdMVGh .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-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-svGobdMVGh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #a38f84;
}
.cid-svGobdMVGh .navbar.opened {
  transition: all 0.3s;
  background: #a38f84 !important;
}
.cid-svGobdMVGh .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-svGobdMVGh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-svGobdMVGh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svGobdMVGh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-svGobdMVGh .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-svGobdMVGh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svGobdMVGh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-svGobdMVGh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-svGobdMVGh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-svGobdMVGh .navbar.navbar-short {
  background: #a38f84 !important;
  min-height: 60px;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svGobdMVGh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-svGobdMVGh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-svGobdMVGh .dropdown-item.active,
.cid-svGobdMVGh .dropdown-item:active {
  background-color: transparent;
}
.cid-svGobdMVGh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38f84;
  z-index: 2;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svGobdMVGh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svGobdMVGh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svGobdMVGh .navbar-buttons {
  text-align: center;
}
.cid-svGobdMVGh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-svGobdMVGh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-svGobdMVGh .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-svGobdMVGh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh a.nav-link .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-svGobdMVGh a.nav-link:hover .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 1;
  margin-left: -20px;
}
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svGobdMVGh .navbar {
    height: 77px;
  }
  .cid-svGobdMVGh .navbar.opened {
    height: auto;
  }
  .cid-svGobdMVGh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svLi8eZI4q {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03219.jpg");
}
.cid-svLi8eZI4q .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-svLi8eZI4q .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-svLi8eZI4q .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-svLi8eZI4q .mbr-text {
    text-align: center;
  }
}
.cid-svLi8eZI4q H1 {
  color: #232323;
  text-align: left;
}
.cid-svLi8eZI4q .mbr-text,
.cid-svLi8eZI4q .mbr-section-btn {
  color: #000000;
}
.cid-svLi8eZI4q H3 {
  color: #000000;
}
.cid-ufyIScMCLD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyIScMCLD .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyIScMCLD .mbr-text {
  color: #120c01;
}
.cid-ufyIT3RnfX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyIT3RnfX .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyIT3RnfX .mbr-text {
  color: #120c01;
}
.cid-ufyITJNtLn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyITJNtLn .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyITJNtLn .mbr-text {
  color: #120c01;
}
.cid-svMFUUfiij {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svLi9lU3vP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svLi9lU3vP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svLi9lU3vP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svLi9lU3vP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svLi9lU3vP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svLi9lU3vP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-svLi9lU3vP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svLi9lU3vP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svLi9lU3vP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svLi9lU3vP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-t0ZqjQnRsX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t0ZqjQnRsX .line {
  background-color: #a38f84;
  color: #a38f84;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t0ZqjQnRsX .section-text {
  padding: 2rem 0;
}
.cid-t0ZqjQnRsX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-t0ZqjQnRsX .inner-container {
    width: 100% !important;
  }
}
.cid-ufyGlb6db7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .content {
    text-align: center;
  }
  .cid-ufyGlb6db7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ufyGlb6db7 .logo-subtitle {
  color: #8d97ad;
}
.cid-ufyGlb6db7 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ufyGlb6db7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ufyGlb6db7 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ufyGlb6db7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-ufyGlb6db7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ufyGlb6db7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ufyGlb6db7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufyGlb6db7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ufyGlb6db7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufyGlb6db7 .list-item {
  display: flex;
}
.cid-ufyGlb6db7 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-ufyGlb6db7 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-ufyGlb6db7 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-ufyGlb6db7 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-ufyGlb6db7 .logo-subtitle,
.cid-ufyGlb6db7 .media-wrap {
  color: #000000;
  text-align: center;
}
.cid-svGobdMVGh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffffff;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) 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-svGobdMVGh .navbar-buttons {
  flex-wrap: wrap;
}
.cid-svGobdMVGh .nav-item,
.cid-svGobdMVGh .nav-link,
.cid-svGobdMVGh .navbar-caption {
  font-weight: normal;
}
.cid-svGobdMVGh .nav-item:focus,
.cid-svGobdMVGh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-svGobdMVGh .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-svGobdMVGh .nav-item .nav-link {
    position: relative;
  }
  .cid-svGobdMVGh .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffffff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-svGobdMVGh .nav-item:hover .nav-link:before,
  .cid-svGobdMVGh .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-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-svGobdMVGh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #a38f84;
}
.cid-svGobdMVGh .navbar.opened {
  transition: all 0.3s;
  background: #a38f84 !important;
}
.cid-svGobdMVGh .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-svGobdMVGh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-svGobdMVGh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svGobdMVGh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-svGobdMVGh .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-svGobdMVGh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svGobdMVGh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-svGobdMVGh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-svGobdMVGh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-svGobdMVGh .navbar.navbar-short {
  background: #a38f84 !important;
  min-height: 60px;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svGobdMVGh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-svGobdMVGh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-svGobdMVGh .dropdown-item.active,
.cid-svGobdMVGh .dropdown-item:active {
  background-color: transparent;
}
.cid-svGobdMVGh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38f84;
  z-index: 2;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svGobdMVGh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svGobdMVGh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svGobdMVGh .navbar-buttons {
  text-align: center;
}
.cid-svGobdMVGh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-svGobdMVGh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-svGobdMVGh .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-svGobdMVGh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh a.nav-link .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-svGobdMVGh a.nav-link:hover .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 1;
  margin-left: -20px;
}
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svGobdMVGh .navbar {
    height: 77px;
  }
  .cid-svGobdMVGh .navbar.opened {
    height: auto;
  }
  .cid-svGobdMVGh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufyJub8Gvq {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ufyJub8Gvq img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-ufyJub8Gvq img {
    width: 100%;
  }
}
.cid-ufyJub8Gvq .btn span {
  order: 0;
  margin-right: 0.6rem;
  margin-left: 0;
}
.cid-ufyJub8Gvq .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.4rem;
}
.cid-ufyJub8Gvq .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ufyJub8Gvq .counter-container ul li:before {
  position: absolute;
  top: -5px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #a38f84;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  content: "✓";
}
.cid-ufyJub8Gvq .mbr-text,
.cid-ufyJub8Gvq .mbr-section-btn {
  color: #232323;
}
.cid-ufyJub8Gvq .mbr-section-subtitle {
  color: #777777;
}
.cid-ufyJub8Gvq .mbr-list {
  color: #777777;
}
.cid-ufyJub8Gvq .mbr-section-title {
  text-align: center;
}
.cid-t0ZsdVlZOX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t0ZsdVlZOX .line {
  background-color: #a38f84;
  color: #a38f84;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t0ZsdVlZOX .section-text {
  padding: 2rem 0;
}
.cid-t0ZsdVlZOX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-t0ZsdVlZOX .inner-container {
    width: 100% !important;
  }
}
.cid-ufyGlb6db7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .content {
    text-align: center;
  }
  .cid-ufyGlb6db7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ufyGlb6db7 .logo-subtitle {
  color: #8d97ad;
}
.cid-ufyGlb6db7 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ufyGlb6db7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ufyGlb6db7 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ufyGlb6db7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-ufyGlb6db7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ufyGlb6db7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ufyGlb6db7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufyGlb6db7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ufyGlb6db7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufyGlb6db7 .list-item {
  display: flex;
}
.cid-ufyGlb6db7 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-ufyGlb6db7 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-ufyGlb6db7 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-ufyGlb6db7 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-ufyGlb6db7 .logo-subtitle,
.cid-ufyGlb6db7 .media-wrap {
  color: #000000;
  text-align: center;
}
.cid-svGobdMVGh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffffff;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) 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-svGobdMVGh .navbar-buttons {
  flex-wrap: wrap;
}
.cid-svGobdMVGh .nav-item,
.cid-svGobdMVGh .nav-link,
.cid-svGobdMVGh .navbar-caption {
  font-weight: normal;
}
.cid-svGobdMVGh .nav-item:focus,
.cid-svGobdMVGh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-svGobdMVGh .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-svGobdMVGh .nav-item .nav-link {
    position: relative;
  }
  .cid-svGobdMVGh .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffffff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-svGobdMVGh .nav-item:hover .nav-link:before,
  .cid-svGobdMVGh .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-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-svGobdMVGh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #a38f84;
}
.cid-svGobdMVGh .navbar.opened {
  transition: all 0.3s;
  background: #a38f84 !important;
}
.cid-svGobdMVGh .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-svGobdMVGh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-svGobdMVGh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svGobdMVGh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-svGobdMVGh .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-svGobdMVGh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svGobdMVGh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-svGobdMVGh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-svGobdMVGh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-svGobdMVGh .navbar.navbar-short {
  background: #a38f84 !important;
  min-height: 60px;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svGobdMVGh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-svGobdMVGh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-svGobdMVGh .dropdown-item.active,
.cid-svGobdMVGh .dropdown-item:active {
  background-color: transparent;
}
.cid-svGobdMVGh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38f84;
  z-index: 2;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svGobdMVGh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svGobdMVGh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svGobdMVGh .navbar-buttons {
  text-align: center;
}
.cid-svGobdMVGh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-svGobdMVGh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-svGobdMVGh .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-svGobdMVGh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh a.nav-link .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-svGobdMVGh a.nav-link:hover .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 1;
  margin-left: -20px;
}
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svGobdMVGh .navbar {
    height: 77px;
  }
  .cid-svGobdMVGh .navbar.opened {
    height: auto;
  }
  .cid-svGobdMVGh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svLvC7bEcj {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svLvC7bEcj .mbr-section-subtitle {
  color: #232323;
}
#RS6STARContactFormRCV3-2w h3 {
  font-size: 46px;
}
#RS6STARContactFormRCV3-2w small {
  font-size: 26px;
}
#RS6STARContactFormRCV3-2w .form-check-inline {
  width: 30%;
  float: left;
  color: #a1a1a1;
}
#RS6STARContactFormRCV3-2w .form-check-inline1 {
  width: 30%;
  float: left;
  color: #a1a1a1;
}
#RS6STARContactFormRCV3-2w .form-check-inline2 {
  float: left;
  color: #a1a1a1;
}
#RS6STARContactFormRCV3-2w .form-checkbox-inline {
  width: 100%;
  float: left;
  color: #a1a1a1;
}
#RS6STARContactFormRCV3-2w .form-check-input {
  margin-left: 2.25rem;
}
#RS6STARContactFormRCV3-2w #genderRadio1 {
  margin-left: 0.25rem;
}
#RS6STARContactFormRCV3-2w #genderRadio2 {
  margin-left: 0.25rem;
}
#RS6STARContactFormRCV3-2w #genderRadio3 {
  margin-left: 0.25rem;
}
#RS6STARContactFormRCV3-2w #gender-div {
  border: 1px #a1a1a1 solid;
  border-radius: 10px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  height: 55px;
}
#RS6STARContactFormRCV3-2w #optcheck1 {
  margin-left: 0.25rem;
}
#RS6STARContactFormRCV3-2w #optcheck2 {
  margin-left: 0.25rem;
}
#RS6STARContactFormRCV3-2w #optcheck3 {
  margin-left: 0.25rem;
}
#RS6STARContactFormRCV3-2w #optcheck-div {
  border: 1px #a1a1a1 solid;
  border-radius: 10px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  height: 55px;
}
#RS6STARContactFormRCV3-2w #terms-div {
  border: 1px #a1a1a1 solid;
  border-radius: 10px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  height: 75px;
}
#RS6STARContactFormRCV3-2w #privacy-div {
  border: 1px #a1a1a1 solid;
  border-radius: 10px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  height: 75px;
}
#RS6STARContactFormRCV3-2w #sendbutton {
  text-align: left;
}
#RS6STARContactFormRCV3-2w .engine {
  display: none !important;
}
@media (max-width: 767px) {
  #RS6STARContactFormRCV3-2w .form-check-inline {
    font-size: 0.8rem !important;
  }
  #RS6STARContactFormRCV3-2w .form-check-inline1 {
    font-size: 0.8rem !important;
  }
  #RS6STARContactFormRCV3-2w .form-check-inline2 {
    font-size: 0.8rem !important;
  }
  #RS6STARContactFormRCV3-2w .form-checkbox-inline {
    font-size: 0.8rem !important;
  }
  #RS6STARContactFormRCV3-2w .form-check-input {
    margin-left: 1.25rem;
  }
  #RS6STARContactFormRCV3-2w #gender-div {
    border: 1px #a1a1a1 solid;
    border-radius: 10px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    height: 105px;
  }
  #RS6STARContactFormRCV3-2w #optcheck-div {
    border: 1px #a1a1a1 solid;
    border-radius: 10px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    height: 105px;
  }
  #RS6STARContactFormRCV3-2w #terms-div {
    border: 1px #a1a1a1 solid;
    border-radius: 10px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    height: 75px;
  }
  #RS6STARContactFormRCV3-2w #privacy-div {
    border: 1px #a1a1a1 solid;
    border-radius: 10px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    height: 75px;
  }
  #RS6STARContactFormRCV3-2w #genderRadio1 {
    margin-left: 2.5rem;
  }
  #RS6STARContactFormRCV3-2w #genderRadio2 {
    margin-left: 2.5rem;
  }
  #RS6STARContactFormRCV3-2w #genderRadio3 {
    margin-left: 2.25rem;
  }
  #RS6STARContactFormRCV3-2w #optcheck1 {
    margin-left: 0.25rem;
  }
  #RS6STARContactFormRCV3-2w #optcheck2 {
    margin-left: 0.25rem;
  }
  #RS6STARContactFormRCV3-2w #optcheck3 {
    margin-left: 0.25rem;
  }
}
@media (max-width: 962px) {
  #RS6STARContactFormRCV3-2w #gender-div {
    border: 1px #a1a1a1 solid;
    border-radius: 10px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    height: 105px;
  }
  #RS6STARContactFormRCV3-2w #optcheck-div {
    border: 1px #a1a1a1 solid;
    border-radius: 10px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    height: 105px;
  }
  #RS6STARContactFormRCV3-2w #terms-div {
    border: 1px #a1a1a1 solid;
    border-radius: 10px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    height: 75px;
  }
  #RS6STARContactFormRCV3-2w #genderRadio1 {
    margin-left: -0.5rem;
  }
  #RS6STARContactFormRCV3-2w #genderRadio2 {
    margin-left: -0.5rem;
  }
  #RS6STARContactFormRCV3-2w #privacy-div {
    border: 1px #a1a1a1 solid;
    border-radius: 10px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    height: 75px;
  }
  #RS6STARContactFormRCV3-2w #genderRadio1 {
    margin-left: -0.5rem;
  }
  #RS6STARContactFormRCV3-2w #genderRadio2 {
    margin-left: -0.5rem;
  }
  #RS6STARContactFormRCV3-2w #genderRadio3 {
    margin-left: -0.5rem;
  }
  #RS6STARContactFormRCV3-2w #optcheck1 {
    margin-left: -0.5rem;
  }
  #RS6STARContactFormRCV3-2w #optcheck2 {
    margin-left: -0.5rem;
  }
  #RS6STARContactFormRCV3-2w #optcheck3 {
    margin-left: -0.5rem;
  }
}
#RS6STARContactFormRCV3-2w .form-control {
  padding: .5em .5em !important;
}
.cid-uzia3gyGhk {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uzia3gyGhk .mbr-section-title,
.cid-uzia3gyGhk .mbr-section-subtitle {
  text-align: center;
}
.cid-uzia3gyGhk .card {
  margin-bottom: 2rem;
}
.cid-uzia3gyGhk .cards-wrap {
  background: #ffffff;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 80px;
  padding-bottom: 48px;
}
.cid-uzia3gyGhk .cards-wrap .features-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 1em;
}
.cid-uzia3gyGhk .cards-wrap .card {
  display: flex;
  flex-direction: row;
}
.cid-uzia3gyGhk .cards-wrap .card-img {
  font-size: 40px;
  background: #a38f84;
  line-height: 68px;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
.cid-uzia3gyGhk .cards-wrap .card .card-wrapper {
  margin-left: 23px;
  border-radius: 4px;
}
.cid-uzia3gyGhk .cards-wrap .card .card-wrapper .bottom-line .mbr-text {
  color: #999999;
}
@media (max-width: 767px) {
  .cid-uzia3gyGhk .card-wrapper {
    padding: 1rem;
    margin-left: 0 !important;
  }
  .cid-uzia3gyGhk .cards-wrap .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .cid-uzia3gyGhk .cards-wrap .card .card-img {
    align-self: center;
  }
  .cid-uzia3gyGhk * {
    text-align: center;
  }
}
.cid-uzia3gyGhk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzia3gyGhk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzia3gyGhk .cards-wrap .card .card-wrapper .bottom-line .mbr-text {
  color: #111111;
}
.cid-ufyGlb6db7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .content {
    text-align: center;
  }
  .cid-ufyGlb6db7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ufyGlb6db7 .logo-subtitle {
  color: #8d97ad;
}
.cid-ufyGlb6db7 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ufyGlb6db7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ufyGlb6db7 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ufyGlb6db7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-ufyGlb6db7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ufyGlb6db7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ufyGlb6db7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufyGlb6db7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ufyGlb6db7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufyGlb6db7 .list-item {
  display: flex;
}
.cid-ufyGlb6db7 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-ufyGlb6db7 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-ufyGlb6db7 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-ufyGlb6db7 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-ufyGlb6db7 .logo-subtitle,
.cid-ufyGlb6db7 .media-wrap {
  color: #000000;
  text-align: center;
}
.cid-svGobdMVGh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffffff;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) 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-svGobdMVGh .navbar-buttons {
  flex-wrap: wrap;
}
.cid-svGobdMVGh .nav-item,
.cid-svGobdMVGh .nav-link,
.cid-svGobdMVGh .navbar-caption {
  font-weight: normal;
}
.cid-svGobdMVGh .nav-item:focus,
.cid-svGobdMVGh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-svGobdMVGh .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-svGobdMVGh .nav-item .nav-link {
    position: relative;
  }
  .cid-svGobdMVGh .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffffff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-svGobdMVGh .nav-item:hover .nav-link:before,
  .cid-svGobdMVGh .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-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-svGobdMVGh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #a38f84;
}
.cid-svGobdMVGh .navbar.opened {
  transition: all 0.3s;
  background: #a38f84 !important;
}
.cid-svGobdMVGh .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-svGobdMVGh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-svGobdMVGh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svGobdMVGh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-svGobdMVGh .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-svGobdMVGh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svGobdMVGh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-svGobdMVGh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-svGobdMVGh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-svGobdMVGh .navbar.navbar-short {
  background: #a38f84 !important;
  min-height: 60px;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svGobdMVGh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-svGobdMVGh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-svGobdMVGh .dropdown-item.active,
.cid-svGobdMVGh .dropdown-item:active {
  background-color: transparent;
}
.cid-svGobdMVGh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38f84;
  z-index: 2;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svGobdMVGh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svGobdMVGh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svGobdMVGh .navbar-buttons {
  text-align: center;
}
.cid-svGobdMVGh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-svGobdMVGh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-svGobdMVGh .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-svGobdMVGh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh a.nav-link .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-svGobdMVGh a.nav-link:hover .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 1;
  margin-left: -20px;
}
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svGobdMVGh .navbar {
    height: 77px;
  }
  .cid-svGobdMVGh .navbar.opened {
    height: auto;
  }
  .cid-svGobdMVGh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svLwM3UCH7 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #a38f84;
}
#custom-html-26 {
  /* Type valid CSS here */
}
#custom-html-26 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-26 p {
  font-size: 60px;
  color: #777;
}
.cid-ufyGlb6db7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .content {
    text-align: center;
  }
  .cid-ufyGlb6db7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ufyGlb6db7 .logo-subtitle {
  color: #8d97ad;
}
.cid-ufyGlb6db7 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ufyGlb6db7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ufyGlb6db7 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ufyGlb6db7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-ufyGlb6db7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ufyGlb6db7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ufyGlb6db7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufyGlb6db7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ufyGlb6db7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufyGlb6db7 .list-item {
  display: flex;
}
.cid-ufyGlb6db7 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-ufyGlb6db7 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-ufyGlb6db7 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-ufyGlb6db7 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-ufyGlb6db7 .logo-subtitle,
.cid-ufyGlb6db7 .media-wrap {
  color: #000000;
  text-align: center;
}
.cid-svGobdMVGh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffffff;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) 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-svGobdMVGh .navbar-buttons {
  flex-wrap: wrap;
}
.cid-svGobdMVGh .nav-item,
.cid-svGobdMVGh .nav-link,
.cid-svGobdMVGh .navbar-caption {
  font-weight: normal;
}
.cid-svGobdMVGh .nav-item:focus,
.cid-svGobdMVGh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-svGobdMVGh .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-svGobdMVGh .nav-item .nav-link {
    position: relative;
  }
  .cid-svGobdMVGh .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffffff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-svGobdMVGh .nav-item:hover .nav-link:before,
  .cid-svGobdMVGh .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-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-svGobdMVGh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #a38f84;
}
.cid-svGobdMVGh .navbar.opened {
  transition: all 0.3s;
  background: #a38f84 !important;
}
.cid-svGobdMVGh .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-svGobdMVGh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-svGobdMVGh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svGobdMVGh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-svGobdMVGh .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-svGobdMVGh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svGobdMVGh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-svGobdMVGh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-svGobdMVGh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-svGobdMVGh .navbar.navbar-short {
  background: #a38f84 !important;
  min-height: 60px;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svGobdMVGh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-svGobdMVGh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-svGobdMVGh .dropdown-item.active,
.cid-svGobdMVGh .dropdown-item:active {
  background-color: transparent;
}
.cid-svGobdMVGh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38f84;
  z-index: 2;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svGobdMVGh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svGobdMVGh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svGobdMVGh .navbar-buttons {
  text-align: center;
}
.cid-svGobdMVGh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-svGobdMVGh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-svGobdMVGh .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-svGobdMVGh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh a.nav-link .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-svGobdMVGh a.nav-link:hover .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 1;
  margin-left: -20px;
}
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svGobdMVGh .navbar {
    height: 77px;
  }
  .cid-svGobdMVGh .navbar.opened {
    height: auto;
  }
  .cid-svGobdMVGh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svLxqcd0S2 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #a38f84;
}
#custom-html-29 {
  /* Type valid CSS here */
}
#custom-html-29 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-29 p {
  font-size: 60px;
  color: #777;
}
.cid-ufyGlb6db7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .content {
    text-align: center;
  }
  .cid-ufyGlb6db7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ufyGlb6db7 .logo-subtitle {
  color: #8d97ad;
}
.cid-ufyGlb6db7 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ufyGlb6db7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ufyGlb6db7 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ufyGlb6db7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-ufyGlb6db7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ufyGlb6db7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ufyGlb6db7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufyGlb6db7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ufyGlb6db7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufyGlb6db7 .list-item {
  display: flex;
}
.cid-ufyGlb6db7 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-ufyGlb6db7 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-ufyGlb6db7 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-ufyGlb6db7 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-ufyGlb6db7 .logo-subtitle,
.cid-ufyGlb6db7 .media-wrap {
  color: #000000;
  text-align: center;
}
.cid-svGobdMVGh .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ffffff;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) 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-svGobdMVGh .navbar-buttons {
  flex-wrap: wrap;
}
.cid-svGobdMVGh .nav-item,
.cid-svGobdMVGh .nav-link,
.cid-svGobdMVGh .navbar-caption {
  font-weight: normal;
}
.cid-svGobdMVGh .nav-item:focus,
.cid-svGobdMVGh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-svGobdMVGh .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-svGobdMVGh .nav-item .nav-link {
    position: relative;
  }
  .cid-svGobdMVGh .nav-item .nav-link:before {
    content: '';
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ffffff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-svGobdMVGh .nav-item:hover .nav-link:before,
  .cid-svGobdMVGh .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-svGobdMVGh .dropdown .dropdown-menu .dropdown-item .soc-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-svGobdMVGh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #a38f84;
}
.cid-svGobdMVGh .navbar.opened {
  transition: all 0.3s;
  background: #a38f84 !important;
}
.cid-svGobdMVGh .navbar .dropdown-item {
  padding: 0.235rem 2rem;
}
.cid-svGobdMVGh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-svGobdMVGh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svGobdMVGh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-svGobdMVGh .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-svGobdMVGh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svGobdMVGh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svGobdMVGh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-svGobdMVGh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-svGobdMVGh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-svGobdMVGh .navbar.navbar-short {
  background: #a38f84 !important;
  min-height: 60px;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-svGobdMVGh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svGobdMVGh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-svGobdMVGh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svGobdMVGh .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-svGobdMVGh .dropdown-item.active,
.cid-svGobdMVGh .dropdown-item:active {
  background-color: transparent;
}
.cid-svGobdMVGh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svGobdMVGh .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a38f84;
  z-index: 2;
}
.cid-svGobdMVGh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svGobdMVGh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svGobdMVGh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svGobdMVGh .navbar-buttons {
  text-align: center;
}
.cid-svGobdMVGh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svGobdMVGh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-svGobdMVGh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svGobdMVGh .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-svGobdMVGh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-svGobdMVGh .soc-item .mbr-iconfont:before {
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-svGobdMVGh .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-svGobdMVGh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-svGobdMVGh a.nav-link .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-svGobdMVGh a.nav-link:hover .mbr-iconfont-btn,
.cid-svGobdMVGh a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-svGobdMVGh a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svGobdMVGh .navbar {
    height: 77px;
  }
  .cid-svGobdMVGh .navbar.opened {
    height: auto;
  }
  .cid-svGobdMVGh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uftIh9S705 {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uftIh9S705 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uftIh9S705 .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-uftIh9S705 .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-uftIiUdSlp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uftIiUdSlp .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uftIiUdSlp .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uftIiUdSlp .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uftIiUdSlp .mbr-text {
    text-align: center;
  }
}
.cid-uftIiUdSlp .mbr-text,
.cid-uftIiUdSlp .mbr-section-btn {
  color: #000000;
}
.cid-uftIiUdSlp H1 {
  color: #000000;
}
.cid-uftIiUdSlp H2 {
  color: #000000;
}
.cid-uftIiUdSlp H3 {
  color: #000000;
}
.cid-uftIjRt3fD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uftIjRt3fD .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uftIjRt3fD .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uftIjRt3fD .mbr-text {
    text-align: center;
  }
}
.cid-uftIjRt3fD .mbr-text,
.cid-uftIjRt3fD .mbr-section-btn {
  color: #000000;
}
.cid-uftIjRt3fD H1 {
  color: #000000;
}
.cid-uftIjRt3fD H2 {
  color: #000000;
}
.cid-uftIjRt3fD H3 {
  color: #000000;
}
.cid-uftIkWGDT4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uftIkWGDT4 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uftIkWGDT4 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uftIkWGDT4 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uftIkWGDT4 .mbr-text {
    text-align: center;
  }
}
.cid-uftIkWGDT4 .mbr-text,
.cid-uftIkWGDT4 .mbr-section-btn {
  color: #000000;
}
.cid-uftIkWGDT4 H1 {
  color: #000000;
}
.cid-uftIkWGDT4 H2 {
  color: #000000;
}
.cid-uftIkWGDT4 H3 {
  color: #000000;
}
.cid-ufyKQHwgYb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyKQHwgYb .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyKQHwgYb .mbr-text {
  color: #120c01;
}
.cid-ufyKRsDxzE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyKRsDxzE .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyKRsDxzE .mbr-text {
  color: #120c01;
}
.cid-uftIllduSt {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uftIllduSt .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uftIllduSt .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uftIllduSt .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uftIllduSt .mbr-text {
    text-align: center;
  }
}
.cid-uftIllduSt .mbr-text,
.cid-uftIllduSt .mbr-section-btn {
  color: #000000;
}
.cid-uftIllduSt H1 {
  color: #000000;
}
.cid-uftIllduSt H2 {
  color: #000000;
}
.cid-uftIllduSt H3 {
  color: #000000;
}
.cid-ufyKSo88ea {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyKSo88ea .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyKSo88ea .mbr-text {
  color: #120c01;
}
.cid-uftIlNZewD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uftIlNZewD .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uftIlNZewD .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uftIlNZewD .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uftIlNZewD .mbr-text {
    text-align: center;
  }
}
.cid-uftIlNZewD .mbr-text,
.cid-uftIlNZewD .mbr-section-btn {
  color: #000000;
}
.cid-uftIlNZewD H1 {
  color: #000000;
}
.cid-uftIlNZewD H2 {
  color: #000000;
}
.cid-uftIlNZewD H3 {
  color: #000000;
}
.cid-ufyKTc2vIe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyKTc2vIe .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyKTc2vIe .mbr-text {
  color: #120c01;
}
.cid-ufyKTZMUQH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyKTZMUQH .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyKTZMUQH .mbr-text {
  color: #120c01;
}
.cid-uftKpRd7yQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uftKpRd7yQ .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uftKpRd7yQ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uftKpRd7yQ .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uftKpRd7yQ .mbr-text {
    text-align: center;
  }
}
.cid-uftKpRd7yQ .mbr-text,
.cid-uftKpRd7yQ .mbr-section-btn {
  color: #000000;
}
.cid-uftKpRd7yQ H1 {
  color: #000000;
}
.cid-uftKpRd7yQ H2 {
  color: #000000;
}
.cid-uftKpRd7yQ H3 {
  color: #000000;
}
.cid-ufyKUIF9ij {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ufyKUIF9ij .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyKUIF9ij .mbr-text {
  color: #120c01;
}
.cid-uftKL4dK7u {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uftKL4dK7u .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uftKL4dK7u .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uftKL4dK7u .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uftKL4dK7u .mbr-text {
    text-align: center;
  }
}
.cid-uftKL4dK7u .mbr-text,
.cid-uftKL4dK7u .mbr-section-btn {
  color: #000000;
}
.cid-uftKL4dK7u H1 {
  color: #000000;
}
.cid-uftKL4dK7u H2 {
  color: #000000;
}
.cid-uftKL4dK7u H3 {
  color: #000000;
}
.cid-ufyKVnfYUC {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ufyKVnfYUC .mbr-section-subtitle {
  color: #14191e;
}
.cid-ufyKVnfYUC .mbr-text {
  color: #120c01;
}
.cid-ufyGlb6db7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .content {
    text-align: center;
  }
  .cid-ufyGlb6db7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ufyGlb6db7 .logo-subtitle {
  color: #8d97ad;
}
.cid-ufyGlb6db7 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ufyGlb6db7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ufyGlb6db7 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ufyGlb6db7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-ufyGlb6db7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ufyGlb6db7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ufyGlb6db7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufyGlb6db7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ufyGlb6db7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufyGlb6db7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufyGlb6db7 .list-item {
  display: flex;
}
.cid-ufyGlb6db7 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-ufyGlb6db7 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-ufyGlb6db7 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-ufyGlb6db7 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-ufyGlb6db7 .logo-subtitle,
.cid-ufyGlb6db7 .media-wrap {
  color: #000000;
  text-align: center;
}
