body {
  font-family: Muli;
}
.display-1 {
  font-family: 'Muli', sans-serif;
  font-size: 3.75rem;
}
.display-1 > .mbr-iconfont {
  font-size: 6rem;
}
.display-2 {
  font-family: 'Muli', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Muli', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Kaushan Script', handwriting;
  font-size: 2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-7 {
  font-family: 'Muli', sans-serif;
  font-size: 1rem;
}
.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: 3rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.9625rem + (3.75 - 1.9625) * ((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.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 10px 15px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #444444 !important;
}
.bg-success {
  background-color: #0f7699 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #767676 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ffa200 !important;
  border-color: #ffa200 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #b37100 !important;
  border-color: #b37100 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b37100 !important;
  border-color: #b37100 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #0f7699 !important;
  border-color: #0f7699 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  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,
.btn-danger.active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-white {
  color: #333333 !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-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-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #111111;
  color: #111111;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #444444;
  border-color: #444444;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #996100;
  color: #996100;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #ffa200;
  border-color: #ffa200;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa200 !important;
  border-color: #ffa200 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #062e3c;
  color: #062e3c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #0f7699;
  border-color: #0f7699;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0f7699 !important;
  border-color: #0f7699 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  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,
.btn-danger-outline.active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  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: #444444 !important;
}
.text-secondary {
  color: #ffa200 !important;
}
.text-success {
  color: #0f7699 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #767676 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #111111 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #996100 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #062e3c !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #434343 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #767676;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #444444;
  border-color: #444444;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #444444;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b7b7b7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #3cbfec;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b6b6b6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Muli', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #444444;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #444444;
  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: #444444;
  border-bottom-color: #444444;
}
.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: #444444 !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: #ffa200 !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='%23444444' %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-uECtUJu2Lm .nav-item:focus,
.cid-uECtUJu2Lm .nav-link:focus {
  outline: none;
}
.cid-uECtUJu2Lm .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uECtUJu2Lm .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uECtUJu2Lm .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uECtUJu2Lm .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uECtUJu2Lm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uECtUJu2Lm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uECtUJu2Lm .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uECtUJu2Lm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uECtUJu2Lm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uECtUJu2Lm .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-uECtUJu2Lm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uECtUJu2Lm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uECtUJu2Lm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uECtUJu2Lm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uECtUJu2Lm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uECtUJu2Lm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uECtUJu2Lm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uECtUJu2Lm .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-uECtUJu2Lm .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uECtUJu2Lm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uECtUJu2Lm .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uECtUJu2Lm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uECtUJu2Lm .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uECtUJu2Lm .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uECtUJu2Lm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uECtUJu2Lm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uECtUJu2Lm .navbar-brand {
  display: flex;
  -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-uECtUJu2Lm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uECtUJu2Lm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uECtUJu2Lm .dropdown-item.active,
.cid-uECtUJu2Lm .dropdown-item:active {
  background-color: transparent;
}
.cid-uECtUJu2Lm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uECtUJu2Lm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uECtUJu2Lm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uECtUJu2Lm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uECtUJu2Lm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uECtUJu2Lm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uECtUJu2Lm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uECtUJu2Lm .navbar-buttons {
  text-align: center;
}
.cid-uECtUJu2Lm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uECtUJu2Lm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uECtUJu2Lm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uECtUJu2Lm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uECtUJu2Lm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uECtUJu2Lm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uECtUJu2Lm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uECtUJu2Lm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uECtUJu2Lm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uECtUJu2Lm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uECtUJu2Lm .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uECtUJu2Lm a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uECtUJu2Lm .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uECtUJu2Lm .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uECtUJu2Lm .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uECtUJu2Lm .nav-link:hover,
.cid-uECtUJu2Lm .dropdown-item:hover,
.cid-uECtUJu2Lm .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-uECN9ZCdGO {
  background-image: url("../../../assets/images/mainpage-1600x1096.webp");
}
.cid-uECN9ZCdGO .btn {
  padding: 10px 15px 10px 15px;
  font-weight: bold;
}
.cid-uECN9ZCdGO .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uECN9ZCdGO .icon-description {
  padding-top: 1rem;
  color: #ffffff;
}
.cid-uECN9ZCdGO .mbr-media {
  height: 70px;
}
.cid-uECN9ZCdGO .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: white;
}
.cid-uECN9ZCdGO .mbr-media span:hover {
  opacity: 0.7;
}
.cid-uECN9ZCdGO .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uECN9ZCdGO .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uECN9ZCdGO .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uECN9ZCdGO .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uECN9ZCdGO a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uECN9ZCdGO a.close:hover {
  color: #ffffff;
}
.cid-uECN9ZCdGO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uECN9ZCdGO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF3LPPelkM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-uF3LPPelkM .mbr-text {
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.03em;
}
.cid-uF3LPPelkM h4 {
  text-align: center;
}
.cid-uF3LPPelkM p {
  text-align: center;
}
.cid-uF3LPPelkM .card {
  padding-bottom: 3rem;
}
.cid-uF3LPPelkM .card-img {
  padding-bottom: 1.5rem;
}
.cid-uF3LPPelkM .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uF3LPPelkM .card-title,
.cid-uF3LPPelkM .card-img {
  color: #ffffff;
  text-align: center;
}
.cid-uF3LPPelkM .card-title {
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 2rem;
}
.cid-uF3LPPelkM .header-title,
.cid-uF3LPPelkM .header-text {
  color: #ffffff;
  text-align: center;
  padding: 0;
  margin-bottom: 2rem;
  width: 100%;
}
.cid-uF3LPPelkM .header-title {
  letter-spacing: 0.1em;
}
.cid-uF3LPPelkM .header-text {
  letter-spacing: 0.03em;
}
.cid-uF3LPPelkM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF3LPPelkM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF3MlHiMBM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uF3MlHiMBM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uF3MlHiMBM .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-uF3MlHiMBM .mbr-text {
  color: #000000;
  letter-spacing: 0.03em;
}
.cid-uF3Mv5axFp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/06.webp");
}
.cid-uF3Mv5axFp .title {
  margin-bottom: 2rem;
}
.cid-uF3Mv5axFp .mbr-section-subtitle {
  color: #767676;
}
.cid-uF3Mv5axFp a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uF3Mv5axFp a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uF3Mv5axFp .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uF3Mv5axFp .input-group-btn {
  display: block;
  text-align: left;
}
.cid-uF3Mv5axFp h3 {
  color: #444;
  letter-spacing: 0.03em;
}
.cid-uF3Mv5axFp .form-control {
  border-radius: 0px !important;
  padding-left: 15px;
}
.cid-uF3Mv5axFp .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uF3Mv5axFp .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uF3Mv5axFp .google-map [data-state-details] {
  color: #444444;
  font-family: Muli;
  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-uF3Mv5axFp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uF3Mv5axFp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uF3Mv5axFp textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-uF3Mv5axFp .mbr-section-title {
    text-align: center;
  }
  .cid-uF3Mv5axFp .mbr-section-subtitle {
    text-align: center;
  }
  .cid-uF3Mv5axFp .input-group-btn {
    text-align: center;
  }
}
.cid-uF3Mv5axFp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF3Mv5axFp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF3MBkWL5z {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-uF3MBkWL5z .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uF3MBkWL5z .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uF3MBkWL5z .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uF3MBkWL5z .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uF3MBkWL5z .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uF3MBkWL5z .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uF3MBkWL5z .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uF3MBkWL5z .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uF3MBkWL5z .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uFrJaL7aV1 .nav-item:focus,
.cid-uFrJaL7aV1 .nav-link:focus {
  outline: none;
}
.cid-uFrJaL7aV1 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uFrJaL7aV1 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uFrJaL7aV1 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uFrJaL7aV1 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFrJaL7aV1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFrJaL7aV1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uFrJaL7aV1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFrJaL7aV1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFrJaL7aV1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFrJaL7aV1 .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-uFrJaL7aV1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFrJaL7aV1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uFrJaL7aV1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uFrJaL7aV1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFrJaL7aV1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFrJaL7aV1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFrJaL7aV1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFrJaL7aV1 .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-uFrJaL7aV1 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFrJaL7aV1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFrJaL7aV1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uFrJaL7aV1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uFrJaL7aV1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uFrJaL7aV1 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uFrJaL7aV1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFrJaL7aV1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFrJaL7aV1 .navbar-brand {
  display: flex;
  -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-uFrJaL7aV1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFrJaL7aV1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFrJaL7aV1 .dropdown-item.active,
.cid-uFrJaL7aV1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uFrJaL7aV1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFrJaL7aV1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFrJaL7aV1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFrJaL7aV1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uFrJaL7aV1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFrJaL7aV1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFrJaL7aV1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFrJaL7aV1 .navbar-buttons {
  text-align: center;
}
.cid-uFrJaL7aV1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFrJaL7aV1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFrJaL7aV1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uFrJaL7aV1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrJaL7aV1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrJaL7aV1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uFrJaL7aV1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrJaL7aV1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uFrJaL7aV1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uFrJaL7aV1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrJaL7aV1 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uFrJaL7aV1 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFrJaL7aV1 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uFrJaL7aV1 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uFrJaL7aV1 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uFrJaL7aV1 .nav-link:hover,
.cid-uFrJaL7aV1 .dropdown-item:hover,
.cid-uFrJaL7aV1 .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-uFrJaLrqns {
  background-image: url("../../../assets/images/38538102-family-law-and-adoption-concept-figures-and-gavel-1600x1067.webp");
}
.cid-uFrJaLrqns .btn {
  padding: 10px 15px 10px 15px;
  font-weight: bold;
}
.cid-uFrJaLrqns .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uFrJaLrqns .icon-description {
  padding-top: 1rem;
  color: #ffffff;
}
.cid-uFrJaLrqns .mbr-media {
  height: 70px;
}
.cid-uFrJaLrqns .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: white;
}
.cid-uFrJaLrqns .mbr-media span:hover {
  opacity: 0.7;
}
.cid-uFrJaLrqns .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uFrJaLrqns .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uFrJaLrqns .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uFrJaLrqns .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uFrJaLrqns a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uFrJaLrqns a.close:hover {
  color: #ffffff;
}
.cid-uFrJaLrqns .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFrJaLrqns .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG79Uhp7UY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #444444;
}
.cid-uG79Uhp7UY .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-uG79Uhp7UY .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-uG79Uhp7UY .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-uG79Uhp7UY .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-uG79Uhp7UY .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-uG79Uhp7UY .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-uG79Uhp7UY .inner-container {
    width: 100% !important;
  }
  .cid-uG79Uhp7UY .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-uG79V13VD2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uG79V13VD2 .mbr-text,
.cid-uG79V13VD2 blockquote {
  color: #767676;
}
.cid-uGjakCTrcy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/06.webp");
}
.cid-uGjakCTrcy .title {
  margin-bottom: 2rem;
}
.cid-uGjakCTrcy .mbr-section-subtitle {
  color: #767676;
}
.cid-uGjakCTrcy a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uGjakCTrcy a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uGjakCTrcy .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGjakCTrcy .input-group-btn {
  display: block;
  text-align: left;
}
.cid-uGjakCTrcy h3 {
  color: #444;
  letter-spacing: 0.03em;
}
.cid-uGjakCTrcy .form-control {
  border-radius: 0px !important;
  padding-left: 15px;
}
.cid-uGjakCTrcy .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uGjakCTrcy .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uGjakCTrcy .google-map [data-state-details] {
  color: #444444;
  font-family: Muli;
  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-uGjakCTrcy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGjakCTrcy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGjakCTrcy textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-uGjakCTrcy .mbr-section-title {
    text-align: center;
  }
  .cid-uGjakCTrcy .mbr-section-subtitle {
    text-align: center;
  }
  .cid-uGjakCTrcy .input-group-btn {
    text-align: center;
  }
}
.cid-uGjakCTrcy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGjakCTrcy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFrJaMuJRs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-uFrJaMuJRs .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uFrJaMuJRs .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uFrJaMuJRs .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uFrJaMuJRs .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uFrJaMuJRs .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uFrJaMuJRs .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uFrJaMuJRs .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFrJaMuJRs .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uFrJaMuJRs .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uFrJFmY3NM .nav-item:focus,
.cid-uFrJFmY3NM .nav-link:focus {
  outline: none;
}
.cid-uFrJFmY3NM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uFrJFmY3NM .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uFrJFmY3NM .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uFrJFmY3NM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFrJFmY3NM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFrJFmY3NM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uFrJFmY3NM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFrJFmY3NM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFrJFmY3NM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFrJFmY3NM .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-uFrJFmY3NM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFrJFmY3NM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uFrJFmY3NM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uFrJFmY3NM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFrJFmY3NM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFrJFmY3NM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFrJFmY3NM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFrJFmY3NM .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-uFrJFmY3NM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFrJFmY3NM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFrJFmY3NM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uFrJFmY3NM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uFrJFmY3NM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uFrJFmY3NM .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uFrJFmY3NM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFrJFmY3NM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFrJFmY3NM .navbar-brand {
  display: flex;
  -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-uFrJFmY3NM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFrJFmY3NM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFrJFmY3NM .dropdown-item.active,
.cid-uFrJFmY3NM .dropdown-item:active {
  background-color: transparent;
}
.cid-uFrJFmY3NM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFrJFmY3NM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFrJFmY3NM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFrJFmY3NM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uFrJFmY3NM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFrJFmY3NM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFrJFmY3NM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFrJFmY3NM .navbar-buttons {
  text-align: center;
}
.cid-uFrJFmY3NM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFrJFmY3NM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFrJFmY3NM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uFrJFmY3NM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrJFmY3NM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrJFmY3NM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uFrJFmY3NM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrJFmY3NM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uFrJFmY3NM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uFrJFmY3NM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrJFmY3NM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uFrJFmY3NM a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFrJFmY3NM .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uFrJFmY3NM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uFrJFmY3NM .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uFrJFmY3NM .nav-link:hover,
.cid-uFrJFmY3NM .dropdown-item:hover,
.cid-uFrJFmY3NM .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-uG7f9dTZ1E {
  background-image: url("../../../assets/images/psychotherapist-1352x900.webp");
}
.cid-uG7f9dTZ1E .btn {
  padding: 10px 15px 10px 15px;
  font-weight: bold;
}
.cid-uG7f9dTZ1E .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uG7f9dTZ1E .icon-description {
  padding-top: 1rem;
  color: #ffffff;
}
.cid-uG7f9dTZ1E .mbr-media {
  height: 70px;
}
.cid-uG7f9dTZ1E .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: white;
}
.cid-uG7f9dTZ1E .mbr-media span:hover {
  opacity: 0.7;
}
.cid-uG7f9dTZ1E .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uG7f9dTZ1E .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uG7f9dTZ1E .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uG7f9dTZ1E .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uG7f9dTZ1E a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uG7f9dTZ1E a.close:hover {
  color: #ffffff;
}
.cid-uG7f9dTZ1E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG7f9dTZ1E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG7ghJnyho {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #444444;
}
.cid-uG7ghJnyho .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-uG7ghJnyho .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-uG7ghJnyho .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-uG7ghJnyho .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-uG7ghJnyho .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-uG7ghJnyho .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-uG7ghJnyho .inner-container {
    width: 100% !important;
  }
  .cid-uG7ghJnyho .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-uG7giiq7OK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uG7giiq7OK .mbr-text,
.cid-uG7giiq7OK blockquote {
  color: #767676;
}
.cid-uGjapobEG9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/06.webp");
}
.cid-uGjapobEG9 .title {
  margin-bottom: 2rem;
}
.cid-uGjapobEG9 .mbr-section-subtitle {
  color: #767676;
}
.cid-uGjapobEG9 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uGjapobEG9 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uGjapobEG9 .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGjapobEG9 .input-group-btn {
  display: block;
  text-align: left;
}
.cid-uGjapobEG9 h3 {
  color: #444;
  letter-spacing: 0.03em;
}
.cid-uGjapobEG9 .form-control {
  border-radius: 0px !important;
  padding-left: 15px;
}
.cid-uGjapobEG9 .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uGjapobEG9 .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uGjapobEG9 .google-map [data-state-details] {
  color: #444444;
  font-family: Muli;
  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-uGjapobEG9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGjapobEG9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGjapobEG9 textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-uGjapobEG9 .mbr-section-title {
    text-align: center;
  }
  .cid-uGjapobEG9 .mbr-section-subtitle {
    text-align: center;
  }
  .cid-uGjapobEG9 .input-group-btn {
    text-align: center;
  }
}
.cid-uGjapobEG9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGjapobEG9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFrJFozDB0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-uFrJFozDB0 .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uFrJFozDB0 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uFrJFozDB0 .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uFrJFozDB0 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uFrJFozDB0 .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uFrJFozDB0 .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uFrJFozDB0 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFrJFozDB0 .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uFrJFozDB0 .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uFrHx7Tph3 .nav-item:focus,
.cid-uFrHx7Tph3 .nav-link:focus {
  outline: none;
}
.cid-uFrHx7Tph3 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uFrHx7Tph3 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uFrHx7Tph3 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uFrHx7Tph3 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFrHx7Tph3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFrHx7Tph3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uFrHx7Tph3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFrHx7Tph3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFrHx7Tph3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFrHx7Tph3 .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-uFrHx7Tph3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFrHx7Tph3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uFrHx7Tph3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uFrHx7Tph3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFrHx7Tph3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFrHx7Tph3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFrHx7Tph3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFrHx7Tph3 .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-uFrHx7Tph3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFrHx7Tph3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFrHx7Tph3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uFrHx7Tph3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uFrHx7Tph3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uFrHx7Tph3 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uFrHx7Tph3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFrHx7Tph3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFrHx7Tph3 .navbar-brand {
  display: flex;
  -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-uFrHx7Tph3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFrHx7Tph3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFrHx7Tph3 .dropdown-item.active,
.cid-uFrHx7Tph3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uFrHx7Tph3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFrHx7Tph3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFrHx7Tph3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFrHx7Tph3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uFrHx7Tph3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFrHx7Tph3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFrHx7Tph3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFrHx7Tph3 .navbar-buttons {
  text-align: center;
}
.cid-uFrHx7Tph3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFrHx7Tph3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFrHx7Tph3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uFrHx7Tph3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrHx7Tph3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrHx7Tph3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uFrHx7Tph3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrHx7Tph3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uFrHx7Tph3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uFrHx7Tph3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrHx7Tph3 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uFrHx7Tph3 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFrHx7Tph3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uFrHx7Tph3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uFrHx7Tph3 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uFrHx7Tph3 .nav-link:hover,
.cid-uFrHx7Tph3 .dropdown-item:hover,
.cid-uFrHx7Tph3 .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-uFrRkCFKfP {
  background-image: url("../../../assets/images/64168338-the-child-is-holding-a-family-cut-out-of-paper-selective-focus-1600x897.webp");
}
.cid-uFrRkCFKfP .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uFrRkCFKfP .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-uFrRkCFKfP .card-img span {
  font-size: 100px;
}
.cid-uFrRkCFKfP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFrRkCFKfP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG76ZMlBvb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #444444;
}
.cid-uG76ZMlBvb .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-uG76ZMlBvb .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-uG76ZMlBvb .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-uG76ZMlBvb .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-uG76ZMlBvb .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-uG76ZMlBvb .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-uG76ZMlBvb .inner-container {
    width: 100% !important;
  }
  .cid-uG76ZMlBvb .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-uG776QKTVr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uG776QKTVr .mbr-text,
.cid-uG776QKTVr blockquote {
  color: #767676;
}
.cid-uGjae4xIa5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/06.webp");
}
.cid-uGjae4xIa5 .title {
  margin-bottom: 2rem;
}
.cid-uGjae4xIa5 .mbr-section-subtitle {
  color: #767676;
}
.cid-uGjae4xIa5 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uGjae4xIa5 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uGjae4xIa5 .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGjae4xIa5 .input-group-btn {
  display: block;
  text-align: left;
}
.cid-uGjae4xIa5 h3 {
  color: #444;
  letter-spacing: 0.03em;
}
.cid-uGjae4xIa5 .form-control {
  border-radius: 0px !important;
  padding-left: 15px;
}
.cid-uGjae4xIa5 .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uGjae4xIa5 .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uGjae4xIa5 .google-map [data-state-details] {
  color: #444444;
  font-family: Muli;
  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-uGjae4xIa5 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGjae4xIa5 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGjae4xIa5 textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-uGjae4xIa5 .mbr-section-title {
    text-align: center;
  }
  .cid-uGjae4xIa5 .mbr-section-subtitle {
    text-align: center;
  }
  .cid-uGjae4xIa5 .input-group-btn {
    text-align: center;
  }
}
.cid-uGjae4xIa5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGjae4xIa5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFrHx9zd3E {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-uFrHx9zd3E .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uFrHx9zd3E .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uFrHx9zd3E .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uFrHx9zd3E .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uFrHx9zd3E .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uFrHx9zd3E .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uFrHx9zd3E .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFrHx9zd3E .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uFrHx9zd3E .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uFrKn1FGUH .nav-item:focus,
.cid-uFrKn1FGUH .nav-link:focus {
  outline: none;
}
.cid-uFrKn1FGUH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uFrKn1FGUH .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uFrKn1FGUH .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uFrKn1FGUH .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFrKn1FGUH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFrKn1FGUH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uFrKn1FGUH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFrKn1FGUH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFrKn1FGUH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFrKn1FGUH .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-uFrKn1FGUH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFrKn1FGUH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uFrKn1FGUH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uFrKn1FGUH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFrKn1FGUH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFrKn1FGUH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFrKn1FGUH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFrKn1FGUH .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-uFrKn1FGUH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFrKn1FGUH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFrKn1FGUH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uFrKn1FGUH .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uFrKn1FGUH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uFrKn1FGUH .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uFrKn1FGUH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFrKn1FGUH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFrKn1FGUH .navbar-brand {
  display: flex;
  -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-uFrKn1FGUH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFrKn1FGUH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFrKn1FGUH .dropdown-item.active,
.cid-uFrKn1FGUH .dropdown-item:active {
  background-color: transparent;
}
.cid-uFrKn1FGUH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFrKn1FGUH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFrKn1FGUH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFrKn1FGUH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uFrKn1FGUH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFrKn1FGUH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFrKn1FGUH ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFrKn1FGUH .navbar-buttons {
  text-align: center;
}
.cid-uFrKn1FGUH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFrKn1FGUH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFrKn1FGUH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uFrKn1FGUH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrKn1FGUH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrKn1FGUH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uFrKn1FGUH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrKn1FGUH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uFrKn1FGUH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uFrKn1FGUH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrKn1FGUH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uFrKn1FGUH a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFrKn1FGUH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uFrKn1FGUH .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uFrKn1FGUH .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uFrKn1FGUH .nav-link:hover,
.cid-uFrKn1FGUH .dropdown-item:hover,
.cid-uFrKn1FGUH .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-uFrKn25yPm {
  background-image: url("../../../assets/images/walker-1600x1067.webp");
}
.cid-uFrKn25yPm .btn {
  padding: 10px 15px 10px 15px;
  font-weight: bold;
}
.cid-uFrKn25yPm .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uFrKn25yPm .icon-description {
  padding-top: 1rem;
  color: #ffffff;
}
.cid-uFrKn25yPm .mbr-media {
  height: 70px;
}
.cid-uFrKn25yPm .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: white;
}
.cid-uFrKn25yPm .mbr-media span:hover {
  opacity: 0.7;
}
.cid-uFrKn25yPm .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uFrKn25yPm .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uFrKn25yPm .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uFrKn25yPm .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uFrKn25yPm a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uFrKn25yPm a.close:hover {
  color: #ffffff;
}
.cid-uFrKn25yPm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFrKn25yPm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGjhk58t1g {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uGjhk58t1g .mbr-text,
.cid-uGjhk58t1g blockquote {
  color: #767676;
}
.cid-uGjgJSAA1N {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/06.webp");
}
.cid-uGjgJSAA1N .title {
  margin-bottom: 2rem;
}
.cid-uGjgJSAA1N .mbr-section-subtitle {
  color: #767676;
}
.cid-uGjgJSAA1N a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uGjgJSAA1N a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uGjgJSAA1N .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGjgJSAA1N .input-group-btn {
  display: block;
  text-align: left;
}
.cid-uGjgJSAA1N h3 {
  color: #444;
  letter-spacing: 0.03em;
}
.cid-uGjgJSAA1N .form-control {
  border-radius: 0px !important;
  padding-left: 15px;
}
.cid-uGjgJSAA1N .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uGjgJSAA1N .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uGjgJSAA1N .google-map [data-state-details] {
  color: #444444;
  font-family: Muli;
  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-uGjgJSAA1N .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGjgJSAA1N .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGjgJSAA1N textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-uGjgJSAA1N .mbr-section-title {
    text-align: center;
  }
  .cid-uGjgJSAA1N .mbr-section-subtitle {
    text-align: center;
  }
  .cid-uGjgJSAA1N .input-group-btn {
    text-align: center;
  }
}
.cid-uGjgJSAA1N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGjgJSAA1N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFrKn3k58R {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-uFrKn3k58R .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uFrKn3k58R .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uFrKn3k58R .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uFrKn3k58R .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uFrKn3k58R .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uFrKn3k58R .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uFrKn3k58R .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFrKn3k58R .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uFrKn3k58R .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uFrPQgVLKS .nav-item:focus,
.cid-uFrPQgVLKS .nav-link:focus {
  outline: none;
}
.cid-uFrPQgVLKS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uFrPQgVLKS .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uFrPQgVLKS .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uFrPQgVLKS .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFrPQgVLKS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFrPQgVLKS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uFrPQgVLKS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFrPQgVLKS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFrPQgVLKS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFrPQgVLKS .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-uFrPQgVLKS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFrPQgVLKS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uFrPQgVLKS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uFrPQgVLKS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFrPQgVLKS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFrPQgVLKS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFrPQgVLKS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFrPQgVLKS .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-uFrPQgVLKS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFrPQgVLKS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFrPQgVLKS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uFrPQgVLKS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uFrPQgVLKS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uFrPQgVLKS .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uFrPQgVLKS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFrPQgVLKS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFrPQgVLKS .navbar-brand {
  display: flex;
  -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-uFrPQgVLKS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFrPQgVLKS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFrPQgVLKS .dropdown-item.active,
.cid-uFrPQgVLKS .dropdown-item:active {
  background-color: transparent;
}
.cid-uFrPQgVLKS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFrPQgVLKS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFrPQgVLKS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFrPQgVLKS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uFrPQgVLKS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFrPQgVLKS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFrPQgVLKS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFrPQgVLKS .navbar-buttons {
  text-align: center;
}
.cid-uFrPQgVLKS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFrPQgVLKS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFrPQgVLKS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uFrPQgVLKS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrPQgVLKS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrPQgVLKS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uFrPQgVLKS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrPQgVLKS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uFrPQgVLKS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uFrPQgVLKS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrPQgVLKS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uFrPQgVLKS a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFrPQgVLKS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uFrPQgVLKS .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uFrPQgVLKS .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uFrPQgVLKS .nav-link:hover,
.cid-uFrPQgVLKS .dropdown-item:hover,
.cid-uFrPQgVLKS .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-uFrPQhjZlg {
  background-image: url("../../../assets/images/contempts-1600x1064.webp");
}
.cid-uFrPQhjZlg .btn {
  padding: 10px 15px 10px 15px;
  font-weight: bold;
}
.cid-uFrPQhjZlg .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uFrPQhjZlg .icon-description {
  padding-top: 1rem;
  color: #ffffff;
}
.cid-uFrPQhjZlg .mbr-media {
  height: 70px;
}
.cid-uFrPQhjZlg .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: white;
}
.cid-uFrPQhjZlg .mbr-media span:hover {
  opacity: 0.7;
}
.cid-uFrPQhjZlg .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uFrPQhjZlg .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uFrPQhjZlg .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uFrPQhjZlg .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uFrPQhjZlg a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uFrPQhjZlg a.close:hover {
  color: #ffffff;
}
.cid-uFrPQhjZlg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFrPQhjZlg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGjkDLDyVA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uGjkDLDyVA .mbr-text,
.cid-uGjkDLDyVA blockquote {
  color: #767676;
}
.cid-uGjkCEiXEN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/06.webp");
}
.cid-uGjkCEiXEN .title {
  margin-bottom: 2rem;
}
.cid-uGjkCEiXEN .mbr-section-subtitle {
  color: #767676;
}
.cid-uGjkCEiXEN a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uGjkCEiXEN a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uGjkCEiXEN .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGjkCEiXEN .input-group-btn {
  display: block;
  text-align: left;
}
.cid-uGjkCEiXEN h3 {
  color: #444;
  letter-spacing: 0.03em;
}
.cid-uGjkCEiXEN .form-control {
  border-radius: 0px !important;
  padding-left: 15px;
}
.cid-uGjkCEiXEN .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uGjkCEiXEN .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uGjkCEiXEN .google-map [data-state-details] {
  color: #444444;
  font-family: Muli;
  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-uGjkCEiXEN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGjkCEiXEN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGjkCEiXEN textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-uGjkCEiXEN .mbr-section-title {
    text-align: center;
  }
  .cid-uGjkCEiXEN .mbr-section-subtitle {
    text-align: center;
  }
  .cid-uGjkCEiXEN .input-group-btn {
    text-align: center;
  }
}
.cid-uGjkCEiXEN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGjkCEiXEN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFrPQisa4Q {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-uFrPQisa4Q .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uFrPQisa4Q .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uFrPQisa4Q .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uFrPQisa4Q .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uFrPQisa4Q .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uFrPQisa4Q .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uFrPQisa4Q .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFrPQisa4Q .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uFrPQisa4Q .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uFrQyguZXk .nav-item:focus,
.cid-uFrQyguZXk .nav-link:focus {
  outline: none;
}
.cid-uFrQyguZXk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uFrQyguZXk .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uFrQyguZXk .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uFrQyguZXk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFrQyguZXk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFrQyguZXk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uFrQyguZXk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFrQyguZXk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFrQyguZXk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFrQyguZXk .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-uFrQyguZXk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFrQyguZXk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uFrQyguZXk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uFrQyguZXk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFrQyguZXk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFrQyguZXk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFrQyguZXk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFrQyguZXk .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-uFrQyguZXk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFrQyguZXk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFrQyguZXk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uFrQyguZXk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uFrQyguZXk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uFrQyguZXk .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uFrQyguZXk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFrQyguZXk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFrQyguZXk .navbar-brand {
  display: flex;
  -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-uFrQyguZXk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFrQyguZXk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFrQyguZXk .dropdown-item.active,
.cid-uFrQyguZXk .dropdown-item:active {
  background-color: transparent;
}
.cid-uFrQyguZXk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFrQyguZXk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFrQyguZXk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFrQyguZXk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uFrQyguZXk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFrQyguZXk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFrQyguZXk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFrQyguZXk .navbar-buttons {
  text-align: center;
}
.cid-uFrQyguZXk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFrQyguZXk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFrQyguZXk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uFrQyguZXk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrQyguZXk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uFrQyguZXk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uFrQyguZXk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrQyguZXk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uFrQyguZXk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uFrQyguZXk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFrQyguZXk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uFrQyguZXk a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFrQyguZXk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uFrQyguZXk .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uFrQyguZXk .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uFrQyguZXk .nav-link:hover,
.cid-uFrQyguZXk .dropdown-item:hover,
.cid-uFrQyguZXk .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-uFrQygNoz0 {
  background-image: url("../../../assets/images/48828422-empty-licensing-agreement-application-form-and-pen-1600x1067.webp");
}
.cid-uFrQygNoz0 .btn {
  padding: 10px 15px 10px 15px;
  font-weight: bold;
}
.cid-uFrQygNoz0 .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uFrQygNoz0 .icon-description {
  padding-top: 1rem;
  color: #ffffff;
}
.cid-uFrQygNoz0 .mbr-media {
  height: 70px;
}
.cid-uFrQygNoz0 .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: white;
}
.cid-uFrQygNoz0 .mbr-media span:hover {
  opacity: 0.7;
}
.cid-uFrQygNoz0 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uFrQygNoz0 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uFrQygNoz0 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uFrQygNoz0 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uFrQygNoz0 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uFrQygNoz0 a.close:hover {
  color: #ffffff;
}
.cid-uFrQygNoz0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFrQygNoz0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGjmHP2AZV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uGjmHP2AZV .mbr-text,
.cid-uGjmHP2AZV blockquote {
  color: #767676;
}
.cid-uGjmGC2VRR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/06.webp");
}
.cid-uGjmGC2VRR .title {
  margin-bottom: 2rem;
}
.cid-uGjmGC2VRR .mbr-section-subtitle {
  color: #767676;
}
.cid-uGjmGC2VRR a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uGjmGC2VRR a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uGjmGC2VRR .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGjmGC2VRR .input-group-btn {
  display: block;
  text-align: left;
}
.cid-uGjmGC2VRR h3 {
  color: #444;
  letter-spacing: 0.03em;
}
.cid-uGjmGC2VRR .form-control {
  border-radius: 0px !important;
  padding-left: 15px;
}
.cid-uGjmGC2VRR .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uGjmGC2VRR .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uGjmGC2VRR .google-map [data-state-details] {
  color: #444444;
  font-family: Muli;
  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-uGjmGC2VRR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGjmGC2VRR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGjmGC2VRR textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-uGjmGC2VRR .mbr-section-title {
    text-align: center;
  }
  .cid-uGjmGC2VRR .mbr-section-subtitle {
    text-align: center;
  }
  .cid-uGjmGC2VRR .input-group-btn {
    text-align: center;
  }
}
.cid-uGjmGC2VRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGjmGC2VRR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFrQyhWtsA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-uFrQyhWtsA .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uFrQyhWtsA .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uFrQyhWtsA .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uFrQyhWtsA .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uFrQyhWtsA .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uFrQyhWtsA .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uFrQyhWtsA .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFrQyhWtsA .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uFrQyhWtsA .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uFD2P9HzU5 .nav-item:focus,
.cid-uFD2P9HzU5 .nav-link:focus {
  outline: none;
}
.cid-uFD2P9HzU5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-uFD2P9HzU5 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-uFD2P9HzU5 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uFD2P9HzU5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFD2P9HzU5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFD2P9HzU5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uFD2P9HzU5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFD2P9HzU5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFD2P9HzU5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFD2P9HzU5 .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-uFD2P9HzU5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFD2P9HzU5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uFD2P9HzU5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uFD2P9HzU5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFD2P9HzU5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFD2P9HzU5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFD2P9HzU5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFD2P9HzU5 .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-uFD2P9HzU5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFD2P9HzU5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFD2P9HzU5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uFD2P9HzU5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uFD2P9HzU5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uFD2P9HzU5 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-uFD2P9HzU5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFD2P9HzU5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFD2P9HzU5 .navbar-brand {
  display: flex;
  -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-uFD2P9HzU5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFD2P9HzU5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFD2P9HzU5 .dropdown-item.active,
.cid-uFD2P9HzU5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uFD2P9HzU5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFD2P9HzU5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFD2P9HzU5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFD2P9HzU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uFD2P9HzU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFD2P9HzU5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFD2P9HzU5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFD2P9HzU5 .navbar-buttons {
  text-align: center;
}
.cid-uFD2P9HzU5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFD2P9HzU5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFD2P9HzU5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uFD2P9HzU5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uFD2P9HzU5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uFD2P9HzU5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uFD2P9HzU5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFD2P9HzU5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uFD2P9HzU5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uFD2P9HzU5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uFD2P9HzU5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uFD2P9HzU5 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFD2P9HzU5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uFD2P9HzU5 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uFD2P9HzU5 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uFD2P9HzU5 .nav-link:hover,
.cid-uFD2P9HzU5 .dropdown-item:hover,
.cid-uFD2P9HzU5 .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-uG75abEo9T {
  background-image: url("../../../assets/images/background4.webp");
}
.cid-uG75abEo9T .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uG75abEo9T .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-uG75abEo9T .card-img span {
  font-size: 100px;
}
.cid-uG75abEo9T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG75abEo9T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG72TlOw85 {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #fafafa;
}
.cid-uG72TlOw85 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG72TlOw85 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG72TlOw85 img {
  object-fit: cover;
  width: 300px;
  margin: 0 auto;
  height: 300px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-uG72TlOw85 img {
    width: 200px;
    height: 200px;
  }
}
.cid-uG72TlOw85 a {
  text-decoration: underline;
  font-weight: bold;
}
.cid-uGjaxJWoMA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/06.webp");
}
.cid-uGjaxJWoMA .title {
  margin-bottom: 2rem;
}
.cid-uGjaxJWoMA .mbr-section-subtitle {
  color: #767676;
}
.cid-uGjaxJWoMA a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uGjaxJWoMA a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uGjaxJWoMA .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGjaxJWoMA .input-group-btn {
  display: block;
  text-align: left;
}
.cid-uGjaxJWoMA h3 {
  color: #444;
  letter-spacing: 0.03em;
}
.cid-uGjaxJWoMA .form-control {
  border-radius: 0px !important;
  padding-left: 15px;
}
.cid-uGjaxJWoMA .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uGjaxJWoMA .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uGjaxJWoMA .google-map [data-state-details] {
  color: #444444;
  font-family: Muli;
  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-uGjaxJWoMA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGjaxJWoMA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGjaxJWoMA textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-uGjaxJWoMA .mbr-section-title {
    text-align: center;
  }
  .cid-uGjaxJWoMA .mbr-section-subtitle {
    text-align: center;
  }
  .cid-uGjaxJWoMA .input-group-btn {
    text-align: center;
  }
}
.cid-uGjaxJWoMA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGjaxJWoMA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUVyw4fuz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-uFUVyw4fuz .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uFUVyw4fuz .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uFUVyw4fuz .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uFUVyw4fuz .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uFUVyw4fuz .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uFUVyw4fuz .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uFUVyw4fuz .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFUVyw4fuz .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uFUVyw4fuz .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
