body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- 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: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #66458e !important;
}
.bg-success {
  background-color: #4289a7 !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #abb680 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #66458e !important;
  border-color: #66458e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #4289a7 !important;
  border-color: #4289a7 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2c5c70 !important;
  border-color: #2c5c70 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #abb680 !important;
  border-color: #abb680 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #879455 !important;
  border-color: #879455 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #879455 !important;
  border-color: #879455 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  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-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  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-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #352449;
  color: #352449 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #254d5e;
  color: #254d5e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #4289a7;
  border-color: #4289a7;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #4289a7 !important;
  border-color: #4289a7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #79844c;
  color: #79844c !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #abb680;
  border-color: #abb680;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #abb680 !important;
  border-color: #abb680 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  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 !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #66458e !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #4289a7 !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #abb680 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #352449 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #254d5e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #79844c !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !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: #4289a7;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #abb680;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.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;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #66458e;
  border-color: #66458e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #66458e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a68cc7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #94c1d5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #e1e5d1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #66458e;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.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 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #66458e;
  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: #66458e;
  border-bottom-color: #66458e;
}
.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: #66458e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ca4336 !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: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2366458e' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-uRr0XecUNL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #e96188;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uRr0XecUNL .nav-item,
.cid-uRr0XecUNL .nav-link,
.cid-uRr0XecUNL .navbar-caption {
  font-weight: normal;
}
.cid-uRr0XecUNL .nav-item:focus,
.cid-uRr0XecUNL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uRr0XecUNL .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uRr0XecUNL .nav-item .nav-link {
    position: relative;
  }
  .cid-uRr0XecUNL .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #e96188;
    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-uRr0XecUNL .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uRr0XecUNL .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uRr0XecUNL .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-uRr0XecUNL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRr0XecUNL .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uRr0XecUNL .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uRr0XecUNL .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uRr0XecUNL .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-uRr0XecUNL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRr0XecUNL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRr0XecUNL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #bbbbbb;
}
.cid-uRr0XecUNL .navbar.opened {
  transition: all .3s;
  background: #bbbbbb !important;
}
.cid-uRr0XecUNL .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uRr0XecUNL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRr0XecUNL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRr0XecUNL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRr0XecUNL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 8rem);
  }
}
.cid-uRr0XecUNL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uRr0XecUNL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRr0XecUNL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRr0XecUNL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uRr0XecUNL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRr0XecUNL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uRr0XecUNL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uRr0XecUNL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRr0XecUNL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRr0XecUNL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uRr0XecUNL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRr0XecUNL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRr0XecUNL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uRr0XecUNL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uRr0XecUNL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRr0XecUNL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRr0XecUNL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uRr0XecUNL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uRr0XecUNL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uRr0XecUNL .navbar.navbar-short {
  background: #bbbbbb !important;
  min-height: 60px;
}
.cid-uRr0XecUNL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uRr0XecUNL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uRr0XecUNL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uRr0XecUNL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRr0XecUNL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRr0XecUNL .dropdown-item.active,
.cid-uRr0XecUNL .dropdown-item:active {
  background-color: transparent;
}
.cid-uRr0XecUNL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRr0XecUNL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRr0XecUNL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRr0XecUNL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uRr0XecUNL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uRr0XecUNL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bbbbbb;
}
.cid-uRr0XecUNL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uRr0XecUNL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRr0XecUNL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uRr0XecUNL .navbar-buttons {
  text-align: center;
}
.cid-uRr0XecUNL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uRr0XecUNL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #abb680;
}
.cid-uRr0XecUNL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uRr0XecUNL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uRr0XecUNL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uRr0XecUNL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uRr0XecUNL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uRr0XecUNL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uRr0XecUNL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uRr0XecUNL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uRr0XecUNL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uRr0XecUNL a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uRr0XecUNL .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uRr0XecUNL .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uRr0XecUNL .soc-item {
  margin: .5rem .3rem;
}
.cid-uRr0XecUNL .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-uRr0XecUNL a.nav-link,
.cid-uRr0XecUNL a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uRr0XecUNL a.nav-link .mbr-iconfont-btn,
.cid-uRr0XecUNL a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uRr0XecUNL a.nav-link:hover .mbr-iconfont-btn,
.cid-uRr0XecUNL a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uRr0XecUNL a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uRr0XecUNL .navbar {
    height: 77px;
  }
  .cid-uRr0XecUNL .navbar.opened {
    height: auto;
  }
  .cid-uRr0XecUNL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSLrPtwajP .modal-body .close {
  background: #1b1b1b;
}
.cid-uSLrPtwajP .modal-body .close span {
  font-style: normal;
}
.cid-uSLrPtwajP .carousel-inner > .active,
.cid-uSLrPtwajP .carousel-inner > .next,
.cid-uSLrPtwajP .carousel-inner > .prev {
  display: table;
}
.cid-uSLrPtwajP .carousel-control .icon-next,
.cid-uSLrPtwajP .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uSLrPtwajP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uSLrPtwajP .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uSLrPtwajP .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uSLrPtwajP .boxed-slider > div {
  position: relative;
}
.cid-uSLrPtwajP .container img {
  width: 100%;
}
.cid-uSLrPtwajP .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-uSLrPtwajP .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uSLrPtwajP .mbr-table-cell {
  padding: 0;
}
.cid-uSLrPtwajP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uSLrPtwajP .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uSLrPtwajP .mbr-overlay {
  z-index: 1;
}
.cid-uSLrPtwajP .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uSLrPtwajP .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uSLrPtwajP .carousel-item .container {
    width: 100%;
  }
}
.cid-uSLrPtwajP .carousel-item-next.carousel-item-left,
.cid-uSLrPtwajP .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uSLrPtwajP .active.carousel-item-right,
.cid-uSLrPtwajP .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-uSLrPtwajP .active.carousel-item-left,
.cid-uSLrPtwajP .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-uSLrPtwajP .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: 1px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-uSLrPtwajP .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSLrPtwajP .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uSLrPtwajP .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uSLrPtwajP .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uSLrPtwajP .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uSLrPtwajP .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: 1px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uSLrPtwajP .mbr-slider .carousel-indicators li.active,
.cid-uSLrPtwajP .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uSLrPtwajP .mbr-slider .carousel-indicators li::after,
.cid-uSLrPtwajP .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uSLrPtwajP .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uSLrPtwajP .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uSLrPtwajP .mbr-slider > .container img {
  width: 100%;
}
.cid-uSLrPtwajP .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-uSLrPtwajP .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uSLrPtwajP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uSLrPtwajP .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uSLrPtwajP .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uSLrPtwajP .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uSLrPtwajP .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uSLrPtwajP .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uSLrPtwajP .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uSLrPtwajP .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uSLrPtwajP .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uSLrPtwajP .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uSLrPtwajP .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uSLH2yHO3R {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-uSLH2yHO3R .content-block {
  max-width: 700px;
  padding: 4rem 3rem;
}
.cid-uSLH2yHO3R .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/link-belt-10.jpg-2000x1500.jpg?v=1Vh6y4");
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.cid-uSLH2yHO3R .overlay {
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: #333333;
}
.cid-uSLH2yHO3R .wrap {
  width: 100%;
  min-height: 400px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.cid-uSLH2yHO3R .wrap:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-uSLH2yHO3R .wrap:hover .img-content {
  opacity: 1;
  transition-delay: 0.3s;
}
.cid-uSLH2yHO3R .wrap:hover .box-title2,
.cid-uSLH2yHO3R .wrap:hover .box-text2 {
  color: #333333;
  transition-delay: 0.3s;
}
.cid-uSLH2yHO3R .wrap:hover .box-content {
  transition-delay: 0.3s;
  background: transparent;
}
.cid-uSLH2yHO3R .box-title2,
.cid-uSLH2yHO3R .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-uSLH2yHO3R .box-content {
  transition: all 0.3s;
  background: #333333;
  width: 50%;
}
.cid-uSLH2yHO3R .content-box {
  padding: 4rem 3rem;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uSLH2yHO3R .img-content {
    opacity: 1;
  }
  .cid-uSLH2yHO3R .box-title2,
  .cid-uSLH2yHO3R .box-text2 {
    color: #333333 !important;
  }
  .cid-uSLH2yHO3R .content-block,
  .cid-uSLH2yHO3R .box-content {
    padding: 3rem 1rem;
  }
  .cid-uSLH2yHO3R .wrap {
    min-height: 300px;
  }
  .cid-uSLH2yHO3R .box-content {
    width: 100%;
    background: transparent;
  }
}
.cid-uSLH2yHO3R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSLH2yHO3R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSLL5wYxI4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d8d5d1;
}
.cid-uSLL5wYxI4 .title-container {
  margin-bottom: -40px;
  max-width: 60%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uSLL5wYxI4 .title-container {
    max-width: 80%;
    margin-bottom: 0;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSLL5wYxI4 .title-container {
    margin-bottom: 0;
    padding-bottom: 56px;
  }
}
.cid-uSLL5wYxI4 .embla {
  position: relative;
  width: 100%;
  margin-top: 128px;
}
@media (max-width: 991px) {
  .cid-uSLL5wYxI4 .embla {
    margin-top: 112px;
  }
}
@media (max-width: 767px) {
  .cid-uSLL5wYxI4 .embla {
    margin-top: 0;
    margin-bottom: 96px;
  }
}
@media (max-width: 575px) {
  .cid-uSLL5wYxI4 .embla {
    margin-bottom: 80px;
  }
}
.cid-uSLL5wYxI4 .mbr-section-title {
  color: #161616;
}
.cid-uSLL5wYxI4 .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-uSLL5wYxI4 .mbr-text {
  color: #161616;
  text-align: left;
}
.cid-uSLL5wYxI4 .item:focus,
.cid-uSLL5wYxI4 span:focus {
  outline: none;
}
.cid-uSLL5wYxI4 .slide-content {
  position: relative;
  padding: 24px;
  background: #ffffff;
  height: 100%;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  flex-flow: column nowrap;
  border: 2px solid #161616;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uSLL5wYxI4 .slide-content {
    padding: 16px;
  }
}
.cid-uSLL5wYxI4 .embla__slide {
  display: flex;
  justify-content: center;
  width: 40vw;
  min-width: 40vw;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
@media (max-width: 991px) {
  .cid-uSLL5wYxI4 .embla__slide {
    width: 70vw;
    min-width: 70vw;
  }
}
@media (max-width: 767px) {
  .cid-uSLL5wYxI4 .embla__slide {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 768px) {
  .cid-uSLL5wYxI4 .embla__slide {
    max-width: initial;
  }
}
.cid-uSLL5wYxI4 .item-content {
  margin-top: 24px;
}
.cid-uSLL5wYxI4 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uSLL5wYxI4 .item-img {
  width: 100%;
  height: 412px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-uSLL5wYxI4 .item-img {
    height: 324px;
  }
}
.cid-uSLL5wYxI4 .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSLL5wYxI4 .label-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-uSLL5wYxI4 .label-container {
    flex-wrap: wrap;
  }
}
.cid-uSLL5wYxI4 .label-wrap {
  display: flex;
  border-radius: 8px;
  padding: 4px 6px;
  background-color: #d8d5d1;
  max-width: 48%;
  width: max-content;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-uSLL5wYxI4 .label-wrap {
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-uSLL5wYxI4 .label-text {
  color: #161616;
  margin-bottom: 0;
}
.cid-uSLL5wYxI4 .position-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uSLL5wYxI4 .position-wrap {
    width: 100%;
    margin-bottom: 8px;
  }
}
.cid-uSLL5wYxI4 .position-wrap .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.cid-uSLL5wYxI4 .position-wrap .mbr-iconfont {
  color: #161616;
  font-size: 1rem;
}
.cid-uSLL5wYxI4 .date-text {
  color: #161616;
  margin-bottom: 0;
  max-width: 48%;
  width: max-content;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .cid-uSLL5wYxI4 .date-text {
    max-width: 100%;
  }
}
.cid-uSLL5wYxI4 .item-title {
  color: #161616;
  text-align: left;
  margin-bottom: 0 !important;
}
.cid-uSLL5wYxI4 .mbr-section-btn {
  margin-top: 14px !important;
  display: flex;
  text-align: left;
  flex-wrap: wrap;
}
.cid-uSLL5wYxI4 .mbr-section-btn .btn {
  flex-grow: 1;
  min-width: 40%;
}
@media (max-width: 767px) {
  .cid-uSLL5wYxI4 .mbr-section-btn {
    width: auto !important;
  }
}
.cid-uSLL5wYxI4 .item-subtitle {
  text-align: left;
}
.cid-uSLL5wYxI4 .embla__button--next,
.cid-uSLL5wYxI4 .embla__button--prev {
  display: flex;
}
.cid-uSLL5wYxI4 .embla__button-container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: absolute;
  top: -140px;
  right: 8%;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSLL5wYxI4 .embla__button-container {
    top: -112px;
    right: 50%;
    transform: translateX(50%);
  }
}
@media (max-width: 767px) {
  .cid-uSLL5wYxI4 .embla__button-container {
    padding-top: 48px;
    top: 100%;
  }
}
@media (max-width: 575px) {
  .cid-uSLL5wYxI4 .embla__button-container {
    padding-top: 32px;
    top: 100%;
  }
}
.cid-uSLL5wYxI4 .embla__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 22px;
  background-color: #ffffff;
  color: #161616;
  border: 2px solid #161616;
  border-radius: 8px;
  transition: all 0.3s;
  margin-left: 16px;
}
.cid-uSLL5wYxI4 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uSLL5wYxI4 .embla__button:hover {
  background: rgba(0, 0, 0, 0.15);
}
.cid-uSLL5wYxI4 .embla__button.embla__button--prev:hover {
  transform: translate(-4px, 0);
}
@media (max-width: 991px) {
  .cid-uSLL5wYxI4 .embla__button.embla__button--prev {
    margin-left: 0;
  }
}
.cid-uSLL5wYxI4 .embla__button.embla__button--next:hover {
  transform: translate(4px, 0);
}
.cid-uSLL5wYxI4 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uSLL5wYxI4 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uSLL5wYxI4 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uSLL5wYxI4 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uSLL5wYxI4 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uSLXjjTiSh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f1eeea;
}
@media (max-width: 767px) {
  .cid-uSLXjjTiSh .content {
    text-align: center;
  }
  .cid-uSLXjjTiSh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uSLXjjTiSh .google-map {
  height: 25rem;
  width: 90%;
  position: relative;
  box-shadow: 2.5px 4.3px 29px 0 rgba(0, 0, 0, 0.18);
}
.cid-uSLXjjTiSh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uSLXjjTiSh .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uSLXjjTiSh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uSLXjjTiSh .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
@media (max-width: 992px) {
  .cid-uSLXjjTiSh .google-map {
    width: 100%;
  }
}
.cid-uSLYACI7Cd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #cccccc;
}
.cid-uSLYACI7Cd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uSLYACI7Cd .heading-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #5aac98;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}
.cid-uSLYACI7Cd .form {
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
}
.cid-uSLYACI7Cd .form form {
  border-radius: 4px;
}
.cid-uSLYACI7Cd .form form > div {
  padding: 2rem 1rem;
}
@media (max-width: 991px) {
  .cid-uSLYACI7Cd .form form {
    padding: 1rem;
  }
}
.cid-uSLYACI7Cd .form form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uSLYACI7Cd .form form .mbr-section-btn .btn {
  display: inline-block;
}
.cid-uSLYACI7Cd .form form .form-group .form-control {
  background-color: #ffffff;
  font-size: 14px;
  border: 1px solid #dddfe0;
  border-radius: 3px;
  color: #232323;
}
.cid-uSLYACI7Cd .form form .form-group textarea {
  min-height: 170px;
}
.cid-uSWniQbMoV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uSWniQbMoV .media-container-row .mbr-text {
  color: #aaaba6;
}
