body {
  font-family: Muli;
}
.display-1 {
  font-family: 'Muli', sans-serif;
  font-size: 4.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'Muli', sans-serif;
  font-size: 3.2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.12rem;
}
.display-4 {
  font-family: 'Muli', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Abel', sans-serif;
  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: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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: #a6831c !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #232323 !important;
}
.bg-warning {
  background-color: #bbbbbb !important;
}
.bg-danger {
  background-color: #c1c1c1 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a6831c !important;
  border-color: #a6831c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #654f11 !important;
  border-color: #654f11 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #654f11 !important;
  border-color: #654f11 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ffba40 !important;
  border-color: #ffba40 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f39b00 !important;
  border-color: #f39b00 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #f39b00 !important;
  border-color: #f39b00 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #959595 !important;
  border-color: #959595 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #959595 !important;
  border-color: #959595 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !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: #4f3e0d;
  color: #4f3e0d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #a6831c;
  border-color: #a6831c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a6831c !important;
  border-color: #a6831c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #d98b00;
  color: #d98b00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #ffba40;
  border-color: #ffba40;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffba40 !important;
  border-color: #ffba40 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #232323;
  border-color: #232323;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #888888;
  color: #888888;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #bbbbbb;
  border-color: #bbbbbb;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !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: #a6831c !important;
}
.text-secondary {
  color: #ffba40 !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #232323 !important;
}
.text-warning {
  color: #bbbbbb !important;
}
.text-danger {
  color: #c1c1c1 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #4f3e0d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #d98b00 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #888888 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #8e8e8e !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: #232323;
}
.alert-warning {
  background-color: #bbbbbb;
}
.alert-danger {
  background-color: #c1c1c1;
}
.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: #a6831c;
  border-color: #a6831c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #a6831c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e4c25e;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* 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: #a6831c;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a6831c;
  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: #a6831c;
  border-bottom-color: #a6831c;
}
.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: #a6831c !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: #ffba40 !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='%23a6831c' %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-t5yhhwqBNb .nav-item:focus,
.cid-t5yhhwqBNb .nav-link:focus {
  outline: none;
}
.cid-t5yhhwqBNb .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0d0d0d;
}
.cid-t5yhhwqBNb .navbar.opened {
  transition: all .3s;
  background: #0d0d0d !important;
}
.cid-t5yhhwqBNb .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t5yhhwqBNb .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5yhhwqBNb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5yhhwqBNb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t5yhhwqBNb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t5yhhwqBNb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t5yhhwqBNb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t5yhhwqBNb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-t5yhhwqBNb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t5yhhwqBNb .navbar.navbar-short {
  background: #0d0d0d !important;
  min-height: 60px;
}
.cid-t5yhhwqBNb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t5yhhwqBNb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5yhhwqBNb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5yhhwqBNb .dropdown-item.active,
.cid-t5yhhwqBNb .dropdown-item:active {
  background-color: transparent;
}
.cid-t5yhhwqBNb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5yhhwqBNb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5yhhwqBNb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5yhhwqBNb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0d0d0d;
}
.cid-t5yhhwqBNb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5yhhwqBNb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5yhhwqBNb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t5yhhwqBNb .navbar-buttons {
  text-align: center;
}
.cid-t5yhhwqBNb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5yhhwqBNb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t5yhhwqBNb a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5yhhwqBNb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-t5yhhwqBNb .nav-link:hover,
.cid-t5yhhwqBNb .dropdown-item:hover,
.cid-t5yhhwqBNb .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-t11GnqAJfQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/04.jpg");
}
.cid-t11GnqAJfQ .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-t11GnqAJfQ .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-t11GnqAJfQ .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uUUtetwSt9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-uUUtetwSt9 .card-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uUUtetwSt9 .card {
  margin-bottom: 2rem;
}
.cid-uUUtetwSt9 .card .card-wrapper {
  height: 100%;
}
.cid-uUUtetwSt9 .card-box {
  padding-top: 2rem;
}
.cid-uUUtetwSt9 .card-box p {
  color: #444;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uUUtetwSt9 .mbr-section-title {
  letter-spacing: 0.1em;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.cid-uUUtetwSt9 .btn {
  margin: .3rem;
}
.cid-t11GeEFamD {
  padding-top: 90px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/01.jpg");
}
.cid-t11GeEFamD .mbr-section-title {
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #232323;
  text-align: center;
}
.cid-t11GeEFamD .mbr-figure {
  width: 100%;
  min-height: 1px;
}
.cid-t11GeEFamD .tab-content {
  width: 100%;
}
.cid-t11GeEFamD .nav {
  border: none;
}
.cid-t11GeEFamD .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.cid-t11GeEFamD .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #232323;
  font-style: normal;
  font-weight: 500;
  padding: 1rem 3rem;
  margin: 0px;
  margin-bottom: 1rem;
  transition: all .5s;
  border-radius: 0px !important;
  border-bottom: 1px solid #232323;
}
.cid-t11GeEFamD .nav-tabs .nav-link h4 {
  margin: 0;
}
.cid-t11GeEFamD .nav-tabs .nav-link:hover {
  border: 1px solid #232323;
  background-color: #18191b;
  color: #ffffff;
}
.cid-t11GeEFamD .nav-tabs .nav-link.active {
  border: 1px solid #232323;
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #18191b;
}
.cid-t11GeEFamD .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-t11GeEFamD .mbr-figure {
    padding-bottom: 1.5rem;
  }
}
.cid-uUxk5WkWIf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uUxk5WkWIf .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uUxk5WkWIf .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-uUxk5WkWIf .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uUxk5WkWIf .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUxk5WkWIf .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uUxk5WkWIf .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uUxk5WkWIf .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUxk5WkWIf .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uUxk5WkWIf .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uUxk5WkWIf .links {
  color: #ffffff;
}
.cid-uUxk5WkWIf .copyright > p {
  color: #ffba40;
}
.cid-t5yhhwqBNb .nav-item:focus,
.cid-t5yhhwqBNb .nav-link:focus {
  outline: none;
}
.cid-t5yhhwqBNb .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0d0d0d;
}
.cid-t5yhhwqBNb .navbar.opened {
  transition: all .3s;
  background: #0d0d0d !important;
}
.cid-t5yhhwqBNb .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t5yhhwqBNb .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5yhhwqBNb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5yhhwqBNb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t5yhhwqBNb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t5yhhwqBNb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t5yhhwqBNb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t5yhhwqBNb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-t5yhhwqBNb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t5yhhwqBNb .navbar.navbar-short {
  background: #0d0d0d !important;
  min-height: 60px;
}
.cid-t5yhhwqBNb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t5yhhwqBNb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5yhhwqBNb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5yhhwqBNb .dropdown-item.active,
.cid-t5yhhwqBNb .dropdown-item:active {
  background-color: transparent;
}
.cid-t5yhhwqBNb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5yhhwqBNb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5yhhwqBNb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5yhhwqBNb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0d0d0d;
}
.cid-t5yhhwqBNb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5yhhwqBNb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5yhhwqBNb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t5yhhwqBNb .navbar-buttons {
  text-align: center;
}
.cid-t5yhhwqBNb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5yhhwqBNb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t5yhhwqBNb a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5yhhwqBNb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-t5yhhwqBNb .nav-link:hover,
.cid-t5yhhwqBNb .dropdown-item:hover,
.cid-t5yhhwqBNb .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-uUxlfrjyvA {
  background-image: url("../../../assets/images/baner-fortaleza-juridica-1600x900.jpg");
}
.cid-uUxlfrjyvA .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uUxlfrjyvA .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-uUxlfrjyvA .card-img span {
  font-size: 100px;
}
.cid-t5F7ejPfcL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/w4.png");
}
.cid-t5F7ejPfcL .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t5F7ejPfcL .container-fluid {
  padding: 0;
}
.cid-t5F7ejPfcL img {
  width: 100%;
}
.cid-t5F7ejPfcL .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-t5F7ejPfcL .content {
    padding: 3rem;
  }
}
.cid-t5F7ejPfcL .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-t5F7ejPfcL .img-col {
  padding: 0;
  margin: auto;
}
.cid-t5F7ejPfcL .mbr-section-title {
  color: #000000;
}
.cid-t5F7ejPfcL .mbr-text,
.cid-t5F7ejPfcL .mbr-section-btn {
  color: #232323;
}
.cid-uUxbf3bqGe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uUxbf3bqGe .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-uUxbf3bqGe .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-uUxbf3bqGe .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-uUxbf3bqGe .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-uUxbf3bqGe .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-uUxbf3bqGe .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-uUxbf3bqGe .inner-container {
    width: 100% !important;
  }
  .cid-uUxbf3bqGe .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-uUUxP5j3kU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/w2.png");
}
.cid-uUUxP5j3kU .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uUUxP5j3kU .container-fluid {
  padding: 0;
}
.cid-uUUxP5j3kU img {
  width: 100%;
}
.cid-uUUxP5j3kU .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-uUUxP5j3kU .content {
    padding: 3rem;
  }
}
.cid-uUUxP5j3kU .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-uUUxP5j3kU .img-col {
  padding: 0;
  margin: auto;
}
.cid-uUUxP5j3kU .mbr-section-title {
  color: #000000;
}
.cid-uUUxP5j3kU .mbr-text,
.cid-uUUxP5j3kU .mbr-section-btn {
  color: #232323;
}
.cid-uUwY7qawb4 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-color: #18191b;
}
.cid-uUwY7qawb4 h4 {
  display: -webkit-flex;
  letter-spacing: 0.03em;
  color: #000000;
}
.cid-uUwY7qawb4 .panel-text {
  letter-spacing: 0.03em;
  color: #ffffff;
  line-height: 1.7;
}
.cid-uUwY7qawb4 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #ffffff;
}
.cid-uUwY7qawb4 .mbr-section-subtitle {
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #ffffff;
}
.cid-uUwY7qawb4 .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uUwY7qawb4 .panel-group {
  width: 100%;
}
.cid-uUwY7qawb4 .card {
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-uUwY7qawb4 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-uUwY7qawb4 .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-uUwY7qawb4 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-uUwY7qawb4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uUwY7qawb4 .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-uUwY7qawb4 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uUwY7qawb4 .card .panel-body {
  background: #000000;
}
.cid-uUwY7qawb4 .sign {
  color: #000000;
}
.cid-uUwY7qawb4 .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uUwY7qawb4 .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-uUwY7qawb4 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-uUxb1LUa3y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/w2.png");
}
.cid-uUxb1LUa3y .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uUxb1LUa3y .container-fluid {
  padding: 0;
}
.cid-uUxb1LUa3y img {
  width: 100%;
}
.cid-uUxb1LUa3y .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-uUxb1LUa3y .content {
    padding: 3rem;
  }
}
.cid-uUxb1LUa3y .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-uUxb1LUa3y .img-col {
  padding: 0;
  margin: auto;
}
.cid-uUxb1LUa3y .mbr-section-title {
  color: #000000;
}
.cid-uUxb1LUa3y .mbr-text,
.cid-uUxb1LUa3y .mbr-section-btn {
  color: #000000;
}
.cid-uUUxOAivoj {
  padding-top: 0px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/01.jpg");
}
.cid-uUUxOAivoj .mbr-section-title {
  letter-spacing: 0.1em;
  color: #444444;
}
.cid-uUUxOAivoj .mbr-section-subtitle {
  letter-spacing: 0.03em;
  color: #444444;
}
.cid-uUUxOAivoj .card {
  margin-bottom: 2rem;
  background: #fafafa;
}
.cid-uUUxOAivoj .card-block {
  letter-spacing: 0.03em;
  color: #444444;
  padding: 1.25rem 1.25rem 5px 1.25rem;
}
.cid-uUUxOAivoj .mbr-author {
  padding-top: 0;
  text-align: center;
}
.cid-uUUxOAivoj .space {
  height: 45px;
  width: 100%;
}
.cid-uUUxOAivoj .mbr-author-img {
  width: 100px;
  height: 100px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  margin-top: -60px;
  left: 0;
  right: 0;
}
.cid-uUUxOAivoj .mbr-author-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-uUUxOAivoj .mbr-author-name p {
  margin-bottom: 0px;
}
.cid-uUUxOAivoj .mbr-author-desc p {
  margin-bottom: 0px;
}
.cid-uUUxOAivoj .card-footer {
  border-top: none;
  background-color: rgba(0, 0, 0, 0.08);
  padding: .75rem 1.25rem 1.25rem 1.25rem;
}
.cid-uUUxOAivoj .card-block P {
  text-align: center;
}
.cid-uUUxMz62ZY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/w2.png");
}
.cid-uUUxMz62ZY .container-fluid {
  padding: 0;
}
.cid-uUUxMz62ZY img {
  width: 100%;
}
.cid-uUUxMz62ZY .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-uUUxMz62ZY .content {
    padding: 3rem;
  }
}
.cid-uUUxMz62ZY .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-uUUxMz62ZY .img-col {
  padding: 0;
  margin: auto;
}
.cid-uUUxMz62ZY .mbr-section-title {
  color: #0d0d0d;
}
.cid-uUUxMz62ZY .mbr-text,
.cid-uUUxMz62ZY .mbr-section-btn {
  color: #232323;
}
.cid-uUx1g93blq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #a6831c;
}
.cid-uUx1g93blq .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-uUx1g93blq .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-uUx1g93blq .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-uUx1g93blq .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-uUx1g93blq .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-uUx1g93blq .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-uUx1g93blq .inner-container {
    width: 100% !important;
  }
  .cid-uUx1g93blq .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-uUxk94SAhF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uUxk94SAhF .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uUxk94SAhF .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-uUxk94SAhF .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uUxk94SAhF .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUxk94SAhF .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uUxk94SAhF .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uUxk94SAhF .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUxk94SAhF .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uUxk94SAhF .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uUxk94SAhF .links {
  color: #ffffff;
}
.cid-uUxk94SAhF .copyright > p {
  color: #ffba40;
}
.cid-t5yhhwqBNb .nav-item:focus,
.cid-t5yhhwqBNb .nav-link:focus {
  outline: none;
}
.cid-t5yhhwqBNb .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0d0d0d;
}
.cid-t5yhhwqBNb .navbar.opened {
  transition: all .3s;
  background: #0d0d0d !important;
}
.cid-t5yhhwqBNb .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t5yhhwqBNb .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5yhhwqBNb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5yhhwqBNb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t5yhhwqBNb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t5yhhwqBNb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t5yhhwqBNb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t5yhhwqBNb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-t5yhhwqBNb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t5yhhwqBNb .navbar.navbar-short {
  background: #0d0d0d !important;
  min-height: 60px;
}
.cid-t5yhhwqBNb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t5yhhwqBNb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5yhhwqBNb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5yhhwqBNb .dropdown-item.active,
.cid-t5yhhwqBNb .dropdown-item:active {
  background-color: transparent;
}
.cid-t5yhhwqBNb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5yhhwqBNb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5yhhwqBNb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5yhhwqBNb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0d0d0d;
}
.cid-t5yhhwqBNb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5yhhwqBNb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5yhhwqBNb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t5yhhwqBNb .navbar-buttons {
  text-align: center;
}
.cid-t5yhhwqBNb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5yhhwqBNb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t5yhhwqBNb a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5yhhwqBNb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-t5yhhwqBNb .nav-link:hover,
.cid-t5yhhwqBNb .dropdown-item:hover,
.cid-t5yhhwqBNb .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-uUUCUoFL0p {
  background-image: url("../../../assets/images/image-31.jpg");
}
.cid-uUUCUoFL0p .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uUUCUoFL0p .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-uUUCUoFL0p .card-img span {
  font-size: 100px;
}
.cid-uUUDkUCP8K {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uUUDkUCP8K .mbr-text {
  color: #000000;
}
.cid-uUUDkUCP8K .inner-container {
  margin: 0;
}
.cid-uUUDkUCP8K .line {
  background-color: #c69a07;
  color: #c69a07;
  height: 2px;
  margin: 0 auto;
}
.cid-uUUDkUCP8K .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
  color: #000000;
}
.cid-uUUDz2v2ne {
  padding-top: 135px;
  padding-bottom: 135px;
  background-color: #18191b;
}
.cid-uUUDz2v2ne h4 {
  display: -webkit-flex;
  letter-spacing: 0.03em;
  color: #000000;
}
.cid-uUUDz2v2ne .panel-text {
  letter-spacing: 0.03em;
  color: #ffffff;
  line-height: 1.7;
}
.cid-uUUDz2v2ne .mbr-section-title {
  letter-spacing: 0.1em;
  color: #ffffff;
}
.cid-uUUDz2v2ne .mbr-section-subtitle {
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #ffffff;
}
.cid-uUUDz2v2ne .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uUUDz2v2ne .panel-group {
  width: 100%;
}
.cid-uUUDz2v2ne .card {
  border-bottom: 1px solid #000000;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-uUUDz2v2ne .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-uUUDz2v2ne .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-uUUDz2v2ne .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-uUUDz2v2ne .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uUUDz2v2ne .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-uUUDz2v2ne .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uUUDz2v2ne .card .panel-body {
  background: #000000;
}
.cid-uUUDz2v2ne .sign {
  color: #000000;
}
.cid-uUUDz2v2ne .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uUUDz2v2ne .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-uUUDz2v2ne .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-uUUE8ssFd5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #a6831c;
}
.cid-uUUE8ssFd5 .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-uUUE8ssFd5 .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-uUUE8ssFd5 .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-uUUE8ssFd5 .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-uUUE8ssFd5 .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-uUUE8ssFd5 .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-uUUE8ssFd5 .inner-container {
    width: 100% !important;
  }
  .cid-uUUE8ssFd5 .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-uUUFXhe1ID {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uUUFXhe1ID .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uUUFXhe1ID .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-uUUFXhe1ID .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uUUFXhe1ID .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUUFXhe1ID .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uUUFXhe1ID .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uUUFXhe1ID .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUUFXhe1ID .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uUUFXhe1ID .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uUUFXhe1ID .links {
  color: #ffffff;
}
.cid-uUUFXhe1ID .copyright > p {
  color: #ffba40;
}
.cid-uUxmqsV55d {
  background-image: url("../../../assets/images/01.jpg");
}
.cid-uUxmqsV55d .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uUxmqsV55d .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-uUxmqsV55d .card-img span {
  font-size: 100px;
}
.cid-uUUGYeBxwp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/w2.png");
}
.cid-uUUGYeBxwp .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uUUGYeBxwp .container-fluid {
  padding: 0;
}
.cid-uUUGYeBxwp img {
  width: 100%;
}
.cid-uUUGYeBxwp .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-uUUGYeBxwp .content {
    padding: 3rem;
  }
}
.cid-uUUGYeBxwp .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-uUUGYeBxwp .img-col {
  padding: 0;
  margin: auto;
}
.cid-uUUGYeBxwp .mbr-section-title {
  color: #000000;
}
.cid-uUUGYeBxwp .mbr-text,
.cid-uUUGYeBxwp .mbr-section-btn {
  color: #232323;
}
.cid-uUqKMLJ36A {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uUqKMLJ36A .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-uUqKMLJ36A .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-uUqKMLJ36A .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-uUqKMLJ36A .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-uUqKMLJ36A .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-uUqKMLJ36A .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-uUqKMLJ36A .inner-container {
    width: 100% !important;
  }
  .cid-uUqKMLJ36A .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-uUUG9CwLXp .google-map {
  height: 25rem;
  position: relative;
}
.cid-uUUG9CwLXp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uUUG9CwLXp .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uUUG9CwLXp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uUUG9CwLXp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uUx9un71vQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #a6831c;
}
.cid-uUx9un71vQ .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-uUx9un71vQ .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-uUx9un71vQ .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-uUx9un71vQ .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-uUx9un71vQ .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-uUx9un71vQ .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-uUx9un71vQ .inner-container {
    width: 100% !important;
  }
  .cid-uUx9un71vQ .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-uUxjSTy168 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uUxjSTy168 .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uUxjSTy168 .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-uUxjSTy168 .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uUxjSTy168 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUxjSTy168 .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uUxjSTy168 .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uUxjSTy168 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUxjSTy168 .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uUxjSTy168 .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uUxjSTy168 .links {
  color: #ffffff;
}
.cid-uUxjSTy168 .copyright > p {
  color: #ffba40;
}
.cid-uUqKMSTQMk .nav-item:focus,
.cid-uUqKMSTQMk .nav-link:focus {
  outline: none;
}
.cid-uUqKMSTQMk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0d0d0d;
}
.cid-uUqKMSTQMk .navbar.opened {
  transition: all .3s;
  background: #0d0d0d !important;
}
.cid-uUqKMSTQMk .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uUqKMSTQMk .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uUqKMSTQMk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uUqKMSTQMk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-uUqKMSTQMk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uUqKMSTQMk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uUqKMSTQMk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uUqKMSTQMk .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-uUqKMSTQMk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uUqKMSTQMk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uUqKMSTQMk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uUqKMSTQMk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uUqKMSTQMk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uUqKMSTQMk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uUqKMSTQMk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uUqKMSTQMk .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-uUqKMSTQMk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uUqKMSTQMk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uUqKMSTQMk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uUqKMSTQMk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uUqKMSTQMk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uUqKMSTQMk .navbar.navbar-short {
  background: #0d0d0d !important;
  min-height: 60px;
}
.cid-uUqKMSTQMk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uUqKMSTQMk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uUqKMSTQMk .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-uUqKMSTQMk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uUqKMSTQMk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uUqKMSTQMk .dropdown-item.active,
.cid-uUqKMSTQMk .dropdown-item:active {
  background-color: transparent;
}
.cid-uUqKMSTQMk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uUqKMSTQMk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uUqKMSTQMk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uUqKMSTQMk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0d0d0d;
}
.cid-uUqKMSTQMk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uUqKMSTQMk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUqKMSTQMk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uUqKMSTQMk .navbar-buttons {
  text-align: center;
}
.cid-uUqKMSTQMk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUqKMSTQMk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uUqKMSTQMk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUqKMSTQMk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUqKMSTQMk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUqKMSTQMk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUqKMSTQMk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUqKMSTQMk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUqKMSTQMk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUqKMSTQMk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUqKMSTQMk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uUqKMSTQMk a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uUqKMSTQMk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uUqKMSTQMk .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-uUqKMSTQMk .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uUqKMSTQMk .nav-link:hover,
.cid-uUqKMSTQMk .dropdown-item:hover,
.cid-uUqKMSTQMk .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
.cid-uUxm3VLYqQ {
  background-image: url("../../../assets/images/01.jpg");
}
.cid-uUxm3VLYqQ .mbr-section-title {
  letter-spacing: .1em;
}
.cid-uUxm3VLYqQ .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-uUxm3VLYqQ .card-img span {
  font-size: 100px;
}
.cid-t2r18kuvLk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/w3.png");
}
.cid-t2r18kuvLk .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t2r18kuvLk .container-fluid {
  padding: 0;
}
.cid-t2r18kuvLk img {
  width: 100%;
}
.cid-t2r18kuvLk .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-t2r18kuvLk .content {
    padding: 3rem;
  }
}
.cid-t2r18kuvLk .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-t2r18kuvLk .img-col {
  padding: 0;
  margin: auto;
}
.cid-t2r18kuvLk .mbr-section-title {
  color: #0d0d0d;
}
.cid-t2r18kuvLk .mbr-text,
.cid-t2r18kuvLk .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uUUzqQ0aks {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/w2.png");
}
.cid-uUUzqQ0aks .container-fluid {
  padding: 0;
}
.cid-uUUzqQ0aks img {
  width: 100%;
}
.cid-uUUzqQ0aks .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-uUUzqQ0aks .content {
    padding: 3rem;
  }
}
.cid-uUUzqQ0aks .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-uUUzqQ0aks .img-col {
  padding: 0;
  margin: auto;
}
.cid-uUUzqQ0aks .mbr-section-title {
  color: #000000;
}
.cid-uUUzqQ0aks .mbr-text,
.cid-uUUzqQ0aks .mbr-section-btn {
  color: #232323;
}
.cid-uUrs0iPaBm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-uUrs0iPaBm .mbr-text {
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.03em;
}
.cid-uUrs0iPaBm h4 {
  text-align: center;
}
.cid-uUrs0iPaBm p {
  text-align: center;
}
.cid-uUrs0iPaBm .card {
  padding-bottom: 3rem;
}
.cid-uUrs0iPaBm .card-img {
  padding-bottom: 1.5rem;
}
.cid-uUrs0iPaBm .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uUrs0iPaBm .card-title,
.cid-uUrs0iPaBm .card-img {
  color: #ffffff;
  text-align: center;
}
.cid-uUrs0iPaBm .card-title {
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 2rem;
}
.cid-uUrs0iPaBm .header-title,
.cid-uUrs0iPaBm .header-text {
  color: #ffffff;
  text-align: center;
  padding: 0;
  margin-bottom: 2rem;
  width: 100%;
}
.cid-uUrs0iPaBm .header-title {
  letter-spacing: 0.1em;
}
.cid-uUrs0iPaBm .header-text {
  letter-spacing: 0.03em;
}
.cid-uUx7jDP9yk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #a6831c;
}
.cid-uUx7jDP9yk .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-uUx7jDP9yk .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-uUx7jDP9yk .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-uUx7jDP9yk .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-uUx7jDP9yk .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-uUx7jDP9yk .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-uUx7jDP9yk .inner-container {
    width: 100% !important;
  }
  .cid-uUx7jDP9yk .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-uVQNCyWxQz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/w2.png");
}
.cid-uVQNCyWxQz .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uVQNCyWxQz .container-fluid {
  padding: 0;
}
.cid-uVQNCyWxQz img {
  width: 100%;
}
.cid-uVQNCyWxQz .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-uVQNCyWxQz .content {
    padding: 3rem;
  }
}
.cid-uVQNCyWxQz .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-uVQNCyWxQz .img-col {
  padding: 0;
  margin: auto;
}
.cid-uVQNCyWxQz .mbr-section-title {
  color: #000000;
}
.cid-uVQNCyWxQz .mbr-text,
.cid-uVQNCyWxQz .mbr-section-btn {
  color: #232323;
}
.cid-uUUzDsQOMC {
  padding-top: 0px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/01.jpg");
}
.cid-uUUzDsQOMC .mbr-section-title {
  letter-spacing: 0.1em;
  color: #444444;
}
.cid-uUUzDsQOMC .mbr-section-subtitle {
  letter-spacing: 0.03em;
  color: #444444;
}
.cid-uUUzDsQOMC .card {
  margin-bottom: 2rem;
  background: #fafafa;
}
.cid-uUUzDsQOMC .card-block {
  letter-spacing: 0.03em;
  color: #444444;
  padding: 1.25rem 1.25rem 5px 1.25rem;
}
.cid-uUUzDsQOMC .mbr-author {
  padding-top: 0;
  text-align: center;
}
.cid-uUUzDsQOMC .space {
  height: 45px;
  width: 100%;
}
.cid-uUUzDsQOMC .mbr-author-img {
  width: 100px;
  height: 100px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  margin-top: -60px;
  left: 0;
  right: 0;
}
.cid-uUUzDsQOMC .mbr-author-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-uUUzDsQOMC .mbr-author-name p {
  margin-bottom: 0px;
}
.cid-uUUzDsQOMC .mbr-author-desc p {
  margin-bottom: 0px;
}
.cid-uUUzDsQOMC .card-footer {
  border-top: none;
  background-color: rgba(0, 0, 0, 0.08);
  padding: .75rem 1.25rem 1.25rem 1.25rem;
}
.cid-uUUzDsQOMC .card-block P {
  text-align: center;
}
.cid-uUUzrT9N1J {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/w2.png");
}
.cid-uUUzrT9N1J .container-fluid {
  padding: 0;
}
.cid-uUUzrT9N1J img {
  width: 100%;
}
.cid-uUUzrT9N1J .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-uUUzrT9N1J .content {
    padding: 3rem;
  }
}
.cid-uUUzrT9N1J .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-uUUzrT9N1J .img-col {
  padding: 0;
  margin: auto;
}
.cid-uUUzrT9N1J .mbr-section-title {
  color: #0d0d0d;
}
.cid-uUUzrT9N1J .mbr-text,
.cid-uUUzrT9N1J .mbr-section-btn {
  color: #232323;
}
.cid-uUxjVAEvdm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uUxjVAEvdm .mbr-text {
  color: #444;
  letter-spacing: 0.1em;
}
.cid-uUxjVAEvdm .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-uUxjVAEvdm .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-uUxjVAEvdm .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUxjVAEvdm .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uUxjVAEvdm .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-uUxjVAEvdm .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUxjVAEvdm .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-uUxjVAEvdm .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-uUxjVAEvdm .links {
  color: #ffffff;
}
.cid-uUxjVAEvdm .copyright > p {
  color: #ffba40;
}
.cid-t5yhhwqBNb .nav-item:focus,
.cid-t5yhhwqBNb .nav-link:focus {
  outline: none;
}
.cid-t5yhhwqBNb .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #0d0d0d;
}
.cid-t5yhhwqBNb .navbar.opened {
  transition: all .3s;
  background: #0d0d0d !important;
}
.cid-t5yhhwqBNb .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-t5yhhwqBNb .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5yhhwqBNb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5yhhwqBNb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5yhhwqBNb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t5yhhwqBNb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t5yhhwqBNb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t5yhhwqBNb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5yhhwqBNb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-t5yhhwqBNb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-t5yhhwqBNb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t5yhhwqBNb .navbar.navbar-short {
  background: #0d0d0d !important;
  min-height: 60px;
}
.cid-t5yhhwqBNb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t5yhhwqBNb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5yhhwqBNb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5yhhwqBNb .dropdown-item.active,
.cid-t5yhhwqBNb .dropdown-item:active {
  background-color: transparent;
}
.cid-t5yhhwqBNb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5yhhwqBNb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5yhhwqBNb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5yhhwqBNb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0d0d0d;
}
.cid-t5yhhwqBNb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5yhhwqBNb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5yhhwqBNb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t5yhhwqBNb .navbar-buttons {
  text-align: center;
}
.cid-t5yhhwqBNb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t5yhhwqBNb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t5yhhwqBNb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5yhhwqBNb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t5yhhwqBNb a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5yhhwqBNb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t5yhhwqBNb .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-t5yhhwqBNb .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-t5yhhwqBNb .nav-link:hover,
.cid-t5yhhwqBNb .dropdown-item:hover,
.cid-t5yhhwqBNb .icons-menu .mbr-iconfont:hover {
  color: #c1c1c1 !important;
}
