body {
  font-family: 'Libre Caslon Display', serif;
}
.display-1 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 5.375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.71875rem;
}
.display-2 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 3.5625rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.453125rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Libre Caslon Display', serif;
  font-size: 1.1875rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.484375rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 4.3rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.7625rem;
    font-size: calc( 2.53125rem + (5.375 - 2.53125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.53125rem + (5.375 - 2.53125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.85rem;
    font-size: calc( 1.8968749999999999rem + (3.5625 - 1.8968749999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.8968749999999999rem + (3.5625 - 1.8968749999999999) * ((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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.95rem;
    font-size: calc( 1.065625rem + (1.1875 - 1.065625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.065625rem + (1.1875 - 1.065625) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.0625rem 3.5625rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 1.5625rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #111213 !important;
}
.bg-success {
  background-color: #b18161 !important;
}
.bg-info {
  background-color: #52586a !important;
}
.bg-warning {
  background-color: #909190 !important;
}
.bg-danger {
  background-color: #9d9690 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #111213 !important;
  border-color: #111213 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3843c7 !important;
  border-color: #3843c7 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #252c83 !important;
  border-color: #252c83 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #252c83 !important;
  border-color: #252c83 !important;
}
.btn-info,
.btn-info:active {
  background-color: #52586a !important;
  border-color: #52586a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #2c2f39 !important;
  border-color: #2c2f39 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2c2f39 !important;
  border-color: #2c2f39 !important;
}
.btn-success,
.btn-success:active {
  background-color: #b18161 !important;
  border-color: #b18161 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #7d573e !important;
  border-color: #7d573e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #7d573e !important;
  border-color: #7d573e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #909190 !important;
  border-color: #909190 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #656665 !important;
  border-color: #656665 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #656665 !important;
  border-color: #656665 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #9d9690 !important;
  border-color: #9d9690 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #726b64 !important;
  border-color: #726b64 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #726b64 !important;
  border-color: #726b64 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #111213;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #111213 !important;
  border-color: #111213 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3843c7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #252c83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3843c7 !important;
  border-color: #3843c7 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #52586a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2c2f39 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #52586a !important;
  border-color: #52586a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b18161;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #7d573e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b18161 !important;
  border-color: #b18161 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #909190;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #656665 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #909190 !important;
  border-color: #909190 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9d9690;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #726b64 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #9d9690 !important;
  border-color: #9d9690 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #111213 !important;
}
.text-secondary {
  color: #3843c7 !important;
}
.text-success {
  color: #b18161 !important;
}
.text-info {
  color: #52586a !important;
}
.text-warning {
  color: #909190 !important;
}
.text-danger {
  color: #9d9690 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #111213 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3843c7 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #b18161 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #52586a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #909190 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #9d9690 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 0.3s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  /*  background-position: 0px 1.2em; */
}
.nav-tabs .nav-link.active {
  color: #111213;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #52586a;
}
.alert-warning {
  background-color: #909190;
}
.alert-danger {
  background-color: #9d9690;
}
.mbr-gallery-filter li.active .btn {
  background-color: #111213;
  border-color: #111213;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c1c4c8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #dbc5b6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9198aa;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d0d0d0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d9d6d4;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #111213 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #111213;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #111213;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #111213;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #111213;
  border-bottom-color: #111213;
}
.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: #111213 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #3843c7 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23111213' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.container {
  max-width: 1356px;
}
a {
  transition: color 300ms ease !important;
}
a.btn {
  transition: color 300ms ease !important;
  box-shadow: none !important;
}
.container-fluid {
  padding-left: 70px;
  padding-right: 70px;
}
@media (max-width: 1000px) {
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 420px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-uY26FhmLui {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uY26FhmLui nav.navbar {
  position: fixed;
}
.cid-uY26FhmLui .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uY26FhmLui .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uY26FhmLui .dropdown-item:hover,
.cid-uY26FhmLui .dropdown-item:focus {
  color: #111213 !important;
}
.cid-uY26FhmLui .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-uY26FhmLui .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0rem;
  margin-top: 0rem;
  height: 2px !important;
}
.cid-uY26FhmLui .nav-link {
  position: relative;
  padding: 0;
  font-weight: 600 !important;
  display: block !important;
}
.cid-uY26FhmLui .container {
  display: flex;
  margin: auto;
}
.cid-uY26FhmLui .iconfont-wrapper {
  font-size: 1.5rem;
}
.cid-uY26FhmLui .dropdown-menu,
.cid-uY26FhmLui .navbar.opened {
  background: #111213 !important;
}
.cid-uY26FhmLui .nav-item:focus,
.cid-uY26FhmLui .nav-link:focus {
  outline: none;
}
.cid-uY26FhmLui .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uY26FhmLui .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uY26FhmLui .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-uY26FhmLui .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uY26FhmLui .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uY26FhmLui .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uY26FhmLui .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #111213;
}
.cid-uY26FhmLui .navbar.opened {
  transition: all 0.3s;
}
.cid-uY26FhmLui .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uY26FhmLui .navbar .navbar-logo img {
  width: auto;
}
.cid-uY26FhmLui .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uY26FhmLui .navbar.collapsed {
  justify-content: center;
}
.cid-uY26FhmLui .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uY26FhmLui .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uY26FhmLui .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uY26FhmLui .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uY26FhmLui .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uY26FhmLui .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uY26FhmLui .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uY26FhmLui .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uY26FhmLui .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uY26FhmLui .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uY26FhmLui .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uY26FhmLui .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uY26FhmLui .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uY26FhmLui .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uY26FhmLui .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uY26FhmLui .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uY26FhmLui .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uY26FhmLui .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uY26FhmLui .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uY26FhmLui .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uY26FhmLui .navbar.navbar-short {
  min-height: 60px;
}
.cid-uY26FhmLui .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uY26FhmLui .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uY26FhmLui .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 104px;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uY26FhmLui .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uY26FhmLui .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uY26FhmLui .dropdown-item.active,
.cid-uY26FhmLui .dropdown-item:active {
  background-color: transparent;
}
.cid-uY26FhmLui .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uY26FhmLui .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uY26FhmLui .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uY26FhmLui .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111213;
}
.cid-uY26FhmLui .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uY26FhmLui .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uY26FhmLui ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-uY26FhmLui .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uY26FhmLui button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uY26FhmLui button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uY26FhmLui button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uY26FhmLui button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uY26FhmLui button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uY26FhmLui button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uY26FhmLui nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uY26FhmLui nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uY26FhmLui nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uY26FhmLui nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uY26FhmLui .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-uY26FhmLui a.nav-link {
  display: flex;
  flex-direction: column;
}
.cid-uY26FhmLui .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uY26FhmLui .navbar {
    height: 70px;
  }
  .cid-uY26FhmLui .navbar.opened {
    height: auto;
  }
  .cid-uY26FhmLui .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uY26FhmLui a {
  display: inline;
}
.cid-uY26FhmLui img {
  display: inline;
  padding-right: 10px;
}
.cid-uY26FhmLui .dropdown-toggle:after {
  display: block;
  border-top: initial !important;
}
.cid-uY26FhmLui .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uY26FhmLui .dropdown-item:hover {
  color: #52586a !important;
}
@media (max-width: 990px) {
  .cid-uY26FhmLui .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uY26FhmLui .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-uY26FhmLui .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uY26FhmLui .nav-item {
  margin-right: 32px;
}
.cid-uY26FhmLui .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-uY26FhmLui ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-uY26FhmLui .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-uY26FhmLui .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-uY26FhmLui .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-uY26FhmLui .mbr-iconfont {
  margin-left: 7px;
  margin-right: 7px;
  color: #ffffff;
}
.cid-uY26FhmLui .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-uY26FhmLui .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-uY26FhmLui .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-uY26FhmLui .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uY26FhmLui .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-uY26FhmLui .dropdown-item:focus {
  color: #52586a !important;
}
@media (max-width: 945px) {
  .cid-uY26FhmLui .top {
    margin-top: 25px;
  }
}
.cid-uY26FhmLui .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-uY26FhmLui .container,
  .cid-uY26FhmLui .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uY26FhmLui li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-uY26FhmLui ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-uY26FhmLui .icons-menu {
    min-width: initial !important;
  }
  .cid-uY26FhmLui a.btn {
    margin-top: 10px;
  }
}
.cid-uY26FhmLui a.btn > span {
  margin-left: 0.5rem;
}
.cid-uY26FhmLui a.nav-link:after {
  background-color: #111213;
  content: "" !important;
  display: block !important;
  position: relative;
  z-index: 1;
  top: auto;
  bottom: -4px;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.cid-uY26FhmLui a.nav-link:hover:after {
  opacity: 1;
  width: 100%;
}
.cid-uY26FhmLui a.nav-link:hover {
  color: #111213 !important;
}
.cid-uY26FhmLui .dropdown-menu > a {
  color: #909190 !important;
  background-color: #111213 !important;
  font-size: 16px;
}
.cid-uY26FhmLui .dropdown-menu > a:hover {
  color: #ffffff !important;
  background-color: #111213 !important;
}
.cid-uY26FhmLui a.dropdown-item {
  color: #909190 !important;
  background-color: #111213 !important;
  font-size: 16px;
}
.cid-uY26FhmLui a.dropdown-item:hover {
  color: #ffffff !important;
  background-color: #111213 !important;
}
.cid-uY26FhmLui .nav-link > .mbr-iconfont {
  font-size: 19px !important;
}
.cid-uY26FhmLui .navbar-toggler:focus {
  box-shadow: none !important;
}
.cid-uY26FioaQB {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background3-1170x780.jpg");
}
.cid-uY26FioaQB .mbr-section-subtitle {
  color: #111213;
  padding-bottom: 13px;
  text-transform: uppercase;
  text-align: center;
}
.cid-uY26FioaQB .mbr-section-title {
  padding-bottom: 30px;
  color: #111213;
  text-align: center;
}
.cid-uY26FioaQB .role {
  color: #52586a;
}
.cid-uY26FioaQB .name {
  color: #111213;
}
.cid-uY26FioaQB a {
  font-weight: 400 !important;
}
.cid-uY26FjeXfj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uY26FjeXfj .card-heading {
  padding-bottom: 20px;
  color: #111213;
  text-align: center;
}
.cid-uY26FjeXfj .p {
  padding-bottom: 29px;
  color: #52586a;
}
.cid-uY26FjeXfj .p:last-child {
  padding-bottom: 0;
}
.cid-uY26FjeXfj .row {
  justify-content: center;
}
.cid-uY26Flb4Cx .google-map {
  filter: grayscale(0.9);
  height: 34rem;
  position: relative;
}
.cid-uY26Flb4Cx .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uY26Flb4Cx .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-uY26Flb4Cx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uY26Flb4Cx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uY26FlRUQv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uY26FlRUQv .l {
  display: inline !important;
}
.cid-uY26FlRUQv .icon-transition span {
  border: 1px solid #e5e6ef;
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 40px;
  height: 40px;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uY26FlRUQv .mbr-iconfont {
  color: #111213;
  align-items: center;
}
.cid-uY26FlRUQv .mbr-iconfont:before {
  font-size: 14px;
  display: flex;
  justify-content: center;
}
.cid-uY26FlRUQv .social-list {
  width: auto;
}
.cid-uY26FlRUQv .social-media {
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}
.cid-uY26FlRUQv .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uY26FlRUQv .social-media ul li {
  padding: 2px;
  display: inline-block;
}
.cid-uY26FlRUQv .icon-transition:hover .mbr-iconfont {
  color: #909190;
}
@media (max-width: 767px) {
  .cid-uY26FlRUQv .social-list {
    text-align: center !important;
  }
}
.cid-uY26FlRUQv .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uY26FlRUQv a.nav-link:after {
  background-color: #111213;
  content: "" !important;
  display: block !important;
  position: relative;
  z-index: 1;
  top: auto;
  bottom: -4px;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.cid-uY26FlRUQv a.nav-link:hover:after {
  opacity: 1;
  width: 100%;
}
.cid-uY26FlRUQv a.nav-link:hover {
  color: #111213 !important;
}
.cid-uY26FlRUQv .navbar-nav {
  display: block;
  text-align: center;
  margin-bottom: 26px;
}
.cid-uY26FlRUQv .nav-link {
  font-weight: 600 !important;
}
.cid-uY26FlRUQv .inner1 {
  width: auto;
}
.cid-uY26FlRUQv .mbr-text {
  color: #ffffff;
}
.cid-uY26FlRUQv .line {
  height: 1px;
  width: 100%;
  background-color: #e5e6ef;
  margin-bottom: 30px;
}
.cid-uY26FlRUQv a {
  font-weight: 400 !important;
}
@media (max-width: 540px) {
  .cid-uY26FlRUQv .navbar-nav {
    display: flex;
    flex-direction: column;
  }
  .cid-uY26FlRUQv .l {
    display: inline !important;
    width: auto;
    margin-top: 15px;
  }
  .cid-uY26FlRUQv .nav-link {
    display: inline;
    width: auto;
  }
}
.cid-uY26FlRUQv .inner {
  position: relative;
  display: inline-block;
  padding: 0em 0.8em !important;
}
.cid-uY26FlRUQv .mbr-section-title,
.cid-uY26FlRUQv .social-media {
  text-align: center;
  color: #111213;
}
.cid-uY26FlRUQv .mbr-section-title,
.cid-uY26FlRUQv .social-media,
.cid-uY26FlRUQv .navbar-nav {
  color: #ffffff;
}
.cid-uY1XwRWLYV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uY1XwRWLYV nav.navbar {
  position: fixed;
}
.cid-uY1XwRWLYV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uY1XwRWLYV .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uY1XwRWLYV .dropdown-item:hover,
.cid-uY1XwRWLYV .dropdown-item:focus {
  color: #111213 !important;
}
.cid-uY1XwRWLYV .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-uY1XwRWLYV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0rem;
  margin-top: 0rem;
  height: 2px !important;
}
.cid-uY1XwRWLYV .nav-link {
  position: relative;
  padding: 0;
  font-weight: 600 !important;
  display: block !important;
}
.cid-uY1XwRWLYV .container {
  display: flex;
  margin: auto;
}
.cid-uY1XwRWLYV .iconfont-wrapper {
  font-size: 1.5rem;
}
.cid-uY1XwRWLYV .dropdown-menu,
.cid-uY1XwRWLYV .navbar.opened {
  background: #111213 !important;
}
.cid-uY1XwRWLYV .nav-item:focus,
.cid-uY1XwRWLYV .nav-link:focus {
  outline: none;
}
.cid-uY1XwRWLYV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uY1XwRWLYV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uY1XwRWLYV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-uY1XwRWLYV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uY1XwRWLYV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uY1XwRWLYV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uY1XwRWLYV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #111213;
}
.cid-uY1XwRWLYV .navbar.opened {
  transition: all 0.3s;
}
.cid-uY1XwRWLYV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uY1XwRWLYV .navbar .navbar-logo img {
  width: auto;
}
.cid-uY1XwRWLYV .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uY1XwRWLYV .navbar.collapsed {
  justify-content: center;
}
.cid-uY1XwRWLYV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uY1XwRWLYV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uY1XwRWLYV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uY1XwRWLYV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uY1XwRWLYV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uY1XwRWLYV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uY1XwRWLYV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uY1XwRWLYV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uY1XwRWLYV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uY1XwRWLYV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uY1XwRWLYV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uY1XwRWLYV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uY1XwRWLYV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uY1XwRWLYV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uY1XwRWLYV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uY1XwRWLYV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uY1XwRWLYV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uY1XwRWLYV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uY1XwRWLYV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uY1XwRWLYV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uY1XwRWLYV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uY1XwRWLYV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uY1XwRWLYV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uY1XwRWLYV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 104px;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uY1XwRWLYV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uY1XwRWLYV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uY1XwRWLYV .dropdown-item.active,
.cid-uY1XwRWLYV .dropdown-item:active {
  background-color: transparent;
}
.cid-uY1XwRWLYV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uY1XwRWLYV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uY1XwRWLYV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uY1XwRWLYV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111213;
}
.cid-uY1XwRWLYV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uY1XwRWLYV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uY1XwRWLYV ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-uY1XwRWLYV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uY1XwRWLYV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uY1XwRWLYV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uY1XwRWLYV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uY1XwRWLYV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uY1XwRWLYV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uY1XwRWLYV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uY1XwRWLYV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uY1XwRWLYV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uY1XwRWLYV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uY1XwRWLYV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uY1XwRWLYV .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-uY1XwRWLYV a.nav-link {
  display: flex;
  flex-direction: column;
}
.cid-uY1XwRWLYV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uY1XwRWLYV .navbar {
    height: 70px;
  }
  .cid-uY1XwRWLYV .navbar.opened {
    height: auto;
  }
  .cid-uY1XwRWLYV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uY1XwRWLYV a {
  display: inline;
}
.cid-uY1XwRWLYV img {
  display: inline;
  padding-right: 10px;
}
.cid-uY1XwRWLYV .dropdown-toggle:after {
  display: block;
  border-top: initial !important;
}
.cid-uY1XwRWLYV .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uY1XwRWLYV .dropdown-item:hover {
  color: #52586a !important;
}
@media (max-width: 990px) {
  .cid-uY1XwRWLYV .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uY1XwRWLYV .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-uY1XwRWLYV .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uY1XwRWLYV .nav-item {
  margin-right: 32px;
}
.cid-uY1XwRWLYV .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-uY1XwRWLYV ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-uY1XwRWLYV .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-uY1XwRWLYV .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-uY1XwRWLYV .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-uY1XwRWLYV .mbr-iconfont {
  margin-left: 7px;
  margin-right: 7px;
  color: #ffffff;
}
.cid-uY1XwRWLYV .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-uY1XwRWLYV .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-uY1XwRWLYV .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-uY1XwRWLYV .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uY1XwRWLYV .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-uY1XwRWLYV .dropdown-item:focus {
  color: #52586a !important;
}
@media (max-width: 945px) {
  .cid-uY1XwRWLYV .top {
    margin-top: 25px;
  }
}
.cid-uY1XwRWLYV .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-uY1XwRWLYV .container,
  .cid-uY1XwRWLYV .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uY1XwRWLYV li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-uY1XwRWLYV ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-uY1XwRWLYV .icons-menu {
    min-width: initial !important;
  }
  .cid-uY1XwRWLYV a.btn {
    margin-top: 10px;
  }
}
.cid-uY1XwRWLYV a.btn > span {
  margin-left: 0.5rem;
}
.cid-uY1XwRWLYV a.nav-link:after {
  background-color: #111213;
  content: "" !important;
  display: block !important;
  position: relative;
  z-index: 1;
  top: auto;
  bottom: -4px;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.cid-uY1XwRWLYV a.nav-link:hover:after {
  opacity: 1;
  width: 100%;
}
.cid-uY1XwRWLYV a.nav-link:hover {
  color: #111213 !important;
}
.cid-uY1XwRWLYV .dropdown-menu > a {
  color: #909190 !important;
  background-color: #111213 !important;
  font-size: 16px;
}
.cid-uY1XwRWLYV .dropdown-menu > a:hover {
  color: #ffffff !important;
  background-color: #111213 !important;
}
.cid-uY1XwRWLYV a.dropdown-item {
  color: #909190 !important;
  background-color: #111213 !important;
  font-size: 16px;
}
.cid-uY1XwRWLYV a.dropdown-item:hover {
  color: #ffffff !important;
  background-color: #111213 !important;
}
.cid-uY1XwRWLYV .nav-link > .mbr-iconfont {
  font-size: 19px !important;
}
.cid-uY1XwRWLYV .navbar-toggler:focus {
  box-shadow: none !important;
}
.cid-uY1XwSYmKp {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background3-1170x780.jpg");
}
.cid-uY1XwSYmKp .mbr-section-subtitle {
  color: #111213;
  padding-bottom: 13px;
  text-transform: uppercase;
  text-align: center;
}
.cid-uY1XwSYmKp .mbr-section-title {
  padding-bottom: 30px;
  color: #111213;
  text-align: center;
}
.cid-uY1XwSYmKp .role {
  color: #52586a;
}
.cid-uY1XwSYmKp .name {
  color: #111213;
}
.cid-uY1XwSYmKp a {
  font-weight: 400 !important;
}
.cid-uY1XXedYH9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uY1XXedYH9 .card-heading {
  padding-bottom: 20px;
  color: #111213;
  text-align: center;
}
.cid-uY1XXedYH9 .p {
  padding-bottom: 29px;
  color: #52586a;
}
.cid-uY1XXedYH9 .p:last-child {
  padding-bottom: 0;
}
.cid-uY1XXedYH9 .row {
  justify-content: center;
}
.cid-uY1XwZerng {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uY1XwZerng textarea,
.cid-uY1XwZerng textarea:hover,
.cid-uY1XwZerng input,
.cid-uY1XwZerng input:hover,
.cid-uY1XwZerng input:focus,
.cid-uY1XwZerng textarea:focus {
  padding: 13px 0;
  border-color: transparent;
  padding-left: 30px;
  box-shadow: none;
}
.cid-uY1XwZerng .form-control {
  border-radius: 0 !important;
}
.cid-uY1XwZerng .form-check .form-check-input {
  float: initial;
  margin-top: 0;
  padding: 0 !important;
}
.cid-uY1XwZerng label {
  color: #040e17;
  font-family: 'DM Sans';
}
.cid-uY1XwZerng input {
  color: #040e17;
  font-family: 'DM Sans';
  background-color: transparent;
  border-bottom: 1px solid #E2E3E9 !important;
}
.cid-uY1XwZerng input::placeholder {
  color: #52586A;
  font-family: 'DM Sans';
}
.cid-uY1XwZerng textarea {
  background-color: transparent;
  color: #040e17;
  font-family: 'DM Sans';
  min-height: 66px;
  border-bottom: 1px solid #E2E3E9 !important;
}
.cid-uY1XwZerng textarea::placeholder {
  color: #52586A;
  font-family: 'DM Sans';
}
.cid-uY1XwZerng .btn > span {
  margin-left: 0.5rem;
  color: currentColor;
}
.cid-uY1XwZerng .row {
  flex-direction: row-reverse;
}
.cid-uY1XwZerng .btn {
  padding: 12px 35px 12px 35px !important;
}
.cid-uY1XwZerng .line {
  display: block;
  height: 1px;
  width: 100%;
  position: relative;
  background-color: #E2E3E9;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
  margin-top: -1px;
}
.cid-uY1XwZerng .line:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  top: 0;
  z-index: 1;
  background-color: #040e17;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cid-uY1XwZerng .form-group:hover .line:before,
.cid-uY1XwZerng .form-group:focus .line:before {
  width: 100%;
}
.cid-uY1XwZerng .form-group {
  position: relative;
  margin-bottom: 30px;
}
.cid-uY1XwZerng .form-group:before {
  font-size: 20px;
  color: black;
  display: block;
  font-weight: 400;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: initial;
}
.cid-uY1XwZerng .mbr-iconfont1 {
  position: absolute;
  top: 14px;
  font-size: 18px;
}
.cid-uY1XwZerng .align {
  margin-top: 5px;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}
.cid-uY1XwZerng .col-auto {
  display: inline-block;
}
.cid-uY1XwZerng .icon-transition span {
  border: 1px solid #e6e6e7;
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 45px;
  height: 45px;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uY1XwZerng button span:before {
  color: currentColor !important;
}
.cid-uY1XwZerng .mbr-iconfont {
  color: #111213;
  align-items: center;
}
.cid-uY1XwZerng .mbr-iconfont:before {
  color: currentColor;
  font-size: 18px;
  display: flex;
  justify-content: center;
}
.cid-uY1XwZerng .social-list {
  display: inline-block;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uY1XwZerng .icon-transition:hover .mbr-iconfont {
  color: #909190;
}
.cid-uY1XwZerng .social-media {
  padding: 0;
  text-align: left;
}
.cid-uY1XwZerng .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uY1XwZerng .social-media ul li {
  padding: 2px;
  display: inline-block;
}
.cid-uY1XwZerng .mbr-list,
.cid-uY1XwZerng .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uY1XwZerng .social-list {
    text-align: center !important;
  }
}
.cid-uY1XwZerng .title {
  margin-bottom: 28px;
}
.cid-uY1XwZerng .text {
  margin-bottom: 20px;
  color: #111213;
  text-align: center;
}
.cid-uY1XwZerng .link1 {
  margin-bottom: 20px;
  position: relative;
}
.cid-uY1XwZerng .phone {
  margin-bottom: 42px;
}
.cid-uY1XwZerng .link:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale3d(0, 1, 1);
  -ms-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  -ms-transition: -ms-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.cid-uY1XwZerng .link:hover:after {
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.cid-uY1XwZerng .ph {
  font-weight: 600;
}
.cid-uY1XwZerng .link {
  font-weight: 400 !important;
}
@media (max-width: 768px) {
  .cid-uY1XwZerng .col-md-8 {
    margin-top: 20px;
  }
}
.cid-uY1XwZerng .title,
.cid-uY1XwZerng .social-media,
.cid-uY1XwZerng .link1,
.cid-uY1XwZerng .phone {
  color: #111213;
}
.cid-uY1XwZerng .title,
.cid-uY1XwZerng .social-media,
.cid-uY1XwZerng .link1,
.cid-uY1XwZerng .phone,
.cid-uY1XwZerng .text {
  text-align: center;
}
.cid-uY1Xx0KWcB .google-map {
  filter: grayscale(0.9);
  height: 34rem;
  position: relative;
}
.cid-uY1Xx0KWcB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uY1Xx0KWcB .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-uY1Xx0KWcB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uY1Xx0KWcB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uY1Xx1SK2V {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uY1Xx1SK2V .l {
  display: inline !important;
}
.cid-uY1Xx1SK2V .icon-transition span {
  border: 1px solid #e5e6ef;
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 40px;
  height: 40px;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uY1Xx1SK2V .mbr-iconfont {
  color: #111213;
  align-items: center;
}
.cid-uY1Xx1SK2V .mbr-iconfont:before {
  font-size: 14px;
  display: flex;
  justify-content: center;
}
.cid-uY1Xx1SK2V .social-list {
  width: auto;
}
.cid-uY1Xx1SK2V .social-media {
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}
.cid-uY1Xx1SK2V .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uY1Xx1SK2V .social-media ul li {
  padding: 2px;
  display: inline-block;
}
.cid-uY1Xx1SK2V .icon-transition:hover .mbr-iconfont {
  color: #909190;
}
@media (max-width: 767px) {
  .cid-uY1Xx1SK2V .social-list {
    text-align: center !important;
  }
}
.cid-uY1Xx1SK2V .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uY1Xx1SK2V a.nav-link:after {
  background-color: #111213;
  content: "" !important;
  display: block !important;
  position: relative;
  z-index: 1;
  top: auto;
  bottom: -4px;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.cid-uY1Xx1SK2V a.nav-link:hover:after {
  opacity: 1;
  width: 100%;
}
.cid-uY1Xx1SK2V a.nav-link:hover {
  color: #111213 !important;
}
.cid-uY1Xx1SK2V .navbar-nav {
  display: block;
  text-align: center;
  margin-bottom: 26px;
}
.cid-uY1Xx1SK2V .nav-link {
  font-weight: 600 !important;
}
.cid-uY1Xx1SK2V .inner1 {
  width: auto;
}
.cid-uY1Xx1SK2V .mbr-text {
  color: #ffffff;
}
.cid-uY1Xx1SK2V .line {
  height: 1px;
  width: 100%;
  background-color: #e5e6ef;
  margin-bottom: 30px;
}
.cid-uY1Xx1SK2V a {
  font-weight: 400 !important;
}
@media (max-width: 540px) {
  .cid-uY1Xx1SK2V .navbar-nav {
    display: flex;
    flex-direction: column;
  }
  .cid-uY1Xx1SK2V .l {
    display: inline !important;
    width: auto;
    margin-top: 15px;
  }
  .cid-uY1Xx1SK2V .nav-link {
    display: inline;
    width: auto;
  }
}
.cid-uY1Xx1SK2V .inner {
  position: relative;
  display: inline-block;
  padding: 0em 0.8em !important;
}
.cid-uY1Xx1SK2V .mbr-section-title,
.cid-uY1Xx1SK2V .social-media {
  text-align: center;
  color: #111213;
}
.cid-uY1Xx1SK2V .mbr-section-title,
.cid-uY1Xx1SK2V .social-media,
.cid-uY1Xx1SK2V .navbar-nav {
  color: #ffffff;
}
.cid-sPvsAwq7hK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sPvsAwq7hK nav.navbar {
  position: fixed;
}
.cid-sPvsAwq7hK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPvsAwq7hK .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sPvsAwq7hK .dropdown-item:hover,
.cid-sPvsAwq7hK .dropdown-item:focus {
  color: #111213 !important;
}
.cid-sPvsAwq7hK .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-sPvsAwq7hK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0rem;
  margin-top: 0rem;
  height: 2px !important;
}
.cid-sPvsAwq7hK .nav-link {
  position: relative;
  padding: 0;
  font-weight: 600 !important;
  display: block !important;
}
.cid-sPvsAwq7hK .container {
  display: flex;
  margin: auto;
}
.cid-sPvsAwq7hK .iconfont-wrapper {
  font-size: 1.5rem;
}
.cid-sPvsAwq7hK .dropdown-menu,
.cid-sPvsAwq7hK .navbar.opened {
  background: #111213 !important;
}
.cid-sPvsAwq7hK .nav-item:focus,
.cid-sPvsAwq7hK .nav-link:focus {
  outline: none;
}
.cid-sPvsAwq7hK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPvsAwq7hK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPvsAwq7hK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-sPvsAwq7hK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPvsAwq7hK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPvsAwq7hK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPvsAwq7hK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #111213;
}
.cid-sPvsAwq7hK .navbar.opened {
  transition: all 0.3s;
}
.cid-sPvsAwq7hK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPvsAwq7hK .navbar .navbar-logo img {
  width: auto;
}
.cid-sPvsAwq7hK .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sPvsAwq7hK .navbar.collapsed {
  justify-content: center;
}
.cid-sPvsAwq7hK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPvsAwq7hK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPvsAwq7hK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sPvsAwq7hK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPvsAwq7hK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPvsAwq7hK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPvsAwq7hK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPvsAwq7hK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPvsAwq7hK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPvsAwq7hK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPvsAwq7hK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPvsAwq7hK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPvsAwq7hK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPvsAwq7hK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPvsAwq7hK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPvsAwq7hK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPvsAwq7hK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPvsAwq7hK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPvsAwq7hK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPvsAwq7hK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPvsAwq7hK .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPvsAwq7hK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sPvsAwq7hK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sPvsAwq7hK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 104px;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPvsAwq7hK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPvsAwq7hK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPvsAwq7hK .dropdown-item.active,
.cid-sPvsAwq7hK .dropdown-item:active {
  background-color: transparent;
}
.cid-sPvsAwq7hK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPvsAwq7hK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPvsAwq7hK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPvsAwq7hK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111213;
}
.cid-sPvsAwq7hK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPvsAwq7hK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPvsAwq7hK ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-sPvsAwq7hK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sPvsAwq7hK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sPvsAwq7hK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPvsAwq7hK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPvsAwq7hK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPvsAwq7hK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPvsAwq7hK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPvsAwq7hK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPvsAwq7hK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPvsAwq7hK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPvsAwq7hK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPvsAwq7hK .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-sPvsAwq7hK a.nav-link {
  display: flex;
  flex-direction: column;
}
.cid-sPvsAwq7hK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPvsAwq7hK .navbar {
    height: 70px;
  }
  .cid-sPvsAwq7hK .navbar.opened {
    height: auto;
  }
  .cid-sPvsAwq7hK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPvsAwq7hK a {
  display: inline;
}
.cid-sPvsAwq7hK img {
  display: inline;
  padding-right: 10px;
}
.cid-sPvsAwq7hK .dropdown-toggle:after {
  display: block;
  border-top: initial !important;
}
.cid-sPvsAwq7hK .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sPvsAwq7hK .dropdown-item:hover {
  color: #52586a !important;
}
@media (max-width: 990px) {
  .cid-sPvsAwq7hK .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sPvsAwq7hK .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sPvsAwq7hK .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sPvsAwq7hK .nav-item {
  margin-right: 32px;
}
.cid-sPvsAwq7hK .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-sPvsAwq7hK ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-sPvsAwq7hK .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-sPvsAwq7hK .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-sPvsAwq7hK .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-sPvsAwq7hK .mbr-iconfont {
  margin-left: 7px;
  margin-right: 7px;
  color: #ffffff;
}
.cid-sPvsAwq7hK .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-sPvsAwq7hK .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-sPvsAwq7hK .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-sPvsAwq7hK .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPvsAwq7hK .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sPvsAwq7hK .dropdown-item:focus {
  color: #52586a !important;
}
@media (max-width: 945px) {
  .cid-sPvsAwq7hK .top {
    margin-top: 25px;
  }
}
.cid-sPvsAwq7hK .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-sPvsAwq7hK .container,
  .cid-sPvsAwq7hK .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sPvsAwq7hK li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-sPvsAwq7hK ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-sPvsAwq7hK .icons-menu {
    min-width: initial !important;
  }
  .cid-sPvsAwq7hK a.btn {
    margin-top: 10px;
  }
}
.cid-sPvsAwq7hK a.btn > span {
  margin-left: 0.5rem;
}
.cid-sPvsAwq7hK a.nav-link:after {
  background-color: #111213;
  content: "" !important;
  display: block !important;
  position: relative;
  z-index: 1;
  top: auto;
  bottom: -4px;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.cid-sPvsAwq7hK a.nav-link:hover:after {
  opacity: 1;
  width: 100%;
}
.cid-sPvsAwq7hK a.nav-link:hover {
  color: #111213 !important;
}
.cid-sPvsAwq7hK .dropdown-menu > a {
  color: #909190 !important;
  background-color: #111213 !important;
  font-size: 16px;
}
.cid-sPvsAwq7hK .dropdown-menu > a:hover {
  color: #ffffff !important;
  background-color: #111213 !important;
}
.cid-sPvsAwq7hK a.dropdown-item {
  color: #909190 !important;
  background-color: #111213 !important;
  font-size: 16px;
}
.cid-sPvsAwq7hK a.dropdown-item:hover {
  color: #ffffff !important;
  background-color: #111213 !important;
}
.cid-sPvsAwq7hK .nav-link > .mbr-iconfont {
  font-size: 19px !important;
}
.cid-sPvsAwq7hK .navbar-toggler:focus {
  box-shadow: none !important;
}
.cid-uXedhQdDTS {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3-1170x780.jpg");
}
.cid-uXedhQdDTS .mbr-section-subtitle {
  color: #111213;
  padding-bottom: 13px;
  text-transform: uppercase;
  text-align: center;
}
.cid-uXedhQdDTS .mbr-section-title {
  padding-bottom: 30px;
  color: #111213;
  text-align: center;
}
.cid-uXedhQdDTS .role {
  color: #52586a;
}
.cid-uXedhQdDTS .name {
  color: #111213;
}
.cid-uXedhQdDTS a {
  font-weight: 400 !important;
}
.cid-sPvsGlBFbk {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sPvsGlBFbk .item-wrapper {
  position: relative;
}
.cid-sPvsGlBFbk .features-image {
  padding-top: 40px;
}
.cid-sPvsGlBFbk .features-image:first-child {
  padding-top: 0px;
}
.cid-sPvsGlBFbk .features-image:nth-child(2) {
  padding-top: 0px;
}
.cid-sPvsGlBFbk .features-image:nth-child(3) {
  padding-top: 0px;
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-sPvsGlBFbk .features-image {
    padding-top: 40px;
  }
  .cid-sPvsGlBFbk .features-image:first-child {
    padding-top: 0px;
  }
  .cid-sPvsGlBFbk .features-image:nth-child(2) {
    padding-top: 0px;
  }
  .cid-sPvsGlBFbk .features-image:nth-child(3) {
    padding-top: 40px;
  }
}
@media (max-width: 574px) {
  .cid-sPvsGlBFbk .features-image {
    padding-top: 40px;
  }
  .cid-sPvsGlBFbk .features-image:first-child {
    padding-top: 0px;
  }
  .cid-sPvsGlBFbk .features-image:nth-child(2) {
    padding-top: 40px;
  }
  .cid-sPvsGlBFbk .features-image:nth-child(3) {
    padding-top: 40px;
  }
}
.cid-sPvsGlBFbk .name {
  color: #ffe3e1;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-sPvsGlBFbk .price {
  color: #ffffff;
  margin-top: 10px;
  font-size: 28px;
  text-align: center;
}
.cid-sPvsGlBFbk .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}
.cid-sPvsGlBFbk .mbr-section-title {
  text-align: center;
  color: #b18161;
  padding-bottom: 20px;
  margin: auto;
  text-transform: uppercase;
}
.cid-sPvsGlBFbk .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.cid-sPvsGlBFbk .item:hover .inner {
  transform: scale(1.1, 1.1);
}
.cid-sPvsGlBFbk .mbr-iconfont::before {
  font-size: 14px;
}
.cid-sPvsGlBFbk .text {
  margin-top: 27px;
  padding-left: 50px;
  position: relative;
}
.cid-sPvsGlBFbk .name:before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 35px;
  height: 2px;
  content: "";
  display: block;
  background-color: #000000;
}
.cid-sPvsGlBFbk .name:after {
  content: '•';
  font-family: fontello;
  display: inline-block;
  vertical-align: baseline;
  font-size: inherit;
  font-weight: 400;
  font-style: normal;
  margin: 0 0.75em;
  color: #909190;
}
.cid-sPvsGlBFbk .name,
.cid-sPvsGlBFbk .name2 {
  width: auto;
  display: inline;
}
.cid-sPvsGlBFbk .name > a:hover {
  color: #3843c7 !important;
}
.cid-sPvsGlBFbk .name2 > a:hover {
  color: #3843c7 !important;
}
.cid-sPvsGlBFbk a {
  font-weight: 400 !important;
}
.cid-sPvsI7Cb0V {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sPvsI7Cb0V .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #b18161;
  text-transform: uppercase;
}
.cid-sPvsI7Cb0V .mbr-section-title {
  margin-bottom: 30px;
  line-height: 0.8;
}
.cid-sPvsI7Cb0V .mbr-text {
  color: #52586a;
  margin-bottom: 40px;
}
.cid-sPvsI7Cb0V .desc {
  color: #111213;
}
.cid-sPvsI7Cb0V .desc1 {
  padding: 0px 10px;
  background: #3f37c9;
  display: inline;
  width: auto;
  color: #ffffff;
}
.cid-sPvsI7Cb0V .card {
  width: 100%;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 30px;
}
.cid-sPvsI7Cb0V .name {
  margin-bottom: 20px;
}
.cid-sPvsI7Cb0V .price {
  width: auto;
  display: inline;
}
.cid-sPvsI7Cb0V .price-line {
  display: block;
  margin-bottom: 27px;
}
.cid-sPvsI7Cb0V .plus1 {
  display: inline;
  width: auto;
  color: #111213;
}
.cid-sPvsI7Cb0V .desc2 {
  display: inline;
  width: auto;
  color: #909190;
}
.cid-sPvsI7Cb0V .new-price {
  width: auto;
  display: inline;
}
.cid-sPvsI7Cb0V .mbr-section-btn {
  margin-bottom: 34px;
}
.cid-sPvsI7Cb0V .price-line1 {
  margin-bottom: 10px;
  color: #111213;
}
.cid-sPvsI7Cb0V .price-line1:last-child {
  margin-bottom: 0px;
}
.cid-sPvsI7Cb0V .btn {
  margin-top: 0;
  margin-bottom: 10px;
}
.cid-sPvsI7Cb0V .plus {
  color: #52586a;
}
.cid-sPvsI7Cb0V .desc,
.cid-sPvsI7Cb0V .plus {
  display: inline-block;
  width: auto;
}
.cid-sPvsI7Cb0V .mbr-text,
.cid-sPvsI7Cb0V .mbr-section-btn {
  color: #52586a;
}
.cid-sPvsI7Cb0V .right {
  padding-left: 10px;
}
@media (max-width: 768px) {
  .cid-sPvsI7Cb0V .right {
    padding-left: 0;
    padding-top: 30px;
  }
}
.cid-sPvsI7Cb0V .name,
.cid-sPvsI7Cb0V .card,
.cid-sPvsI7Cb0V .price-line {
  text-align: center;
}
.cid-sPvsI7Cb0V .mbr-text,
.cid-sPvsI7Cb0V .mbr-section-btn,
.cid-sPvsI7Cb0V .price-line1 {
  text-align: justify;
}
.cid-uXZP6Kw3m8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/lourakia204-287x198.jpeg");
  position: relative;
  overflow: hidden;
}
.cid-uXZP6Kw3m8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXZP6Kw3m8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXZP6Kw3m8 .decor-wrapper {
  position: absolute;
  top: 0;
  height: 100%;
  padding: 32px 0;
  z-index: 1;
}
.cid-uXZP6Kw3m8 .decor-wrapper .decor {
  height: 100%;
  width: 400px;
  border: 1px solid #111213;
}
.cid-uXZP6Kw3m8 .decor-wrapper .decor_1 {
  box-shadow: inset 0 0 0 2px #52586a;
}
.cid-uXZP6Kw3m8 .decor-wrapper .decor_2 {
  box-shadow: inset 0 0 0 2px #52586a;
}
.cid-uXZP6Kw3m8 .decoration_1 {
  left: -100px;
}
@media (max-width: 1640px) {
  .cid-uXZP6Kw3m8 .decoration_1 {
    left: -230px;
  }
}
@media (max-width: 1440px) {
  .cid-uXZP6Kw3m8 .decoration_1 {
    left: -250px;
  }
}
@media (max-width: 1200px) {
  .cid-uXZP6Kw3m8 .decoration_1 {
    left: -300px;
  }
}
@media (max-width: 992px) {
  .cid-uXZP6Kw3m8 .decoration_1 {
    left: -380px;
  }
}
.cid-uXZP6Kw3m8 .decoration_2 {
  right: -100px;
}
@media (max-width: 1640px) {
  .cid-uXZP6Kw3m8 .decoration_2 {
    right: -230px;
  }
}
@media (max-width: 1440px) {
  .cid-uXZP6Kw3m8 .decoration_2 {
    right: -250px;
  }
}
@media (max-width: 1200px) {
  .cid-uXZP6Kw3m8 .decoration_2 {
    right: -300px;
  }
}
@media (max-width: 992px) {
  .cid-uXZP6Kw3m8 .decoration_2 {
    right: -380px;
  }
}
.cid-uXZP6Kw3m8 .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
  padding: 120px 0;
}
@media (max-width: 1440px) {
  .cid-uXZP6Kw3m8 .content-wrapper {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .cid-uXZP6Kw3m8 .content-wrapper {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uXZP6Kw3m8 .content-wrapper {
    padding: 0 16px;
  }
}
.cid-uXZP6Kw3m8 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uXZP6Kw3m8 .content-wrapper .text-wrapper .mbr-text {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uXZP6Kw3m8 .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uXZP6Kw3m8 .content-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-uXZP6Kw3m8 .mbr-section-title {
  color: #181824;
}
.cid-uXZP6Kw3m8 .mbr-text,
.cid-uXZP6Kw3m8 .text-wrapper {
  color: #54547e;
  text-align: center;
}
.cid-uXZP6Kw3m8 .mbr-section-title,
.cid-uXZP6Kw3m8 .mbr-section-btn,
.cid-uXZP6Kw3m8 .icon-wrapper {
  text-align: center;
}
.cid-sPvsNhpVZl {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background5-1170x780.jpg");
}
.cid-sPvsNhpVZl .container {
  max-width: 1132px;
}
.cid-sPvsNhpVZl .col-md-7 {
  margin: auto !important;
}
@media (max-width: 992px) {
  .cid-sPvsNhpVZl .b {
    margin-bottom: 20px;
  }
}
.cid-sPvsS1wj5V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sPvsS1wj5V .item-wrapper {
  position: relative;
}
.cid-sPvsS1wj5V .features-image {
  padding-top: 45px;
}
.cid-sPvsS1wj5V .features-image:first-child {
  padding-top: 0px;
}
.cid-sPvsS1wj5V .features-image:nth-child(2) {
  padding-top: 0px;
}
.cid-sPvsS1wj5V .features-image:nth-child(3) {
  padding-top: 0px;
}
@media (max-width: 990px) {
  .cid-sPvsS1wj5V .features-image:nth-child(3) {
    padding-top: 45px;
  }
}
@media (max-width: 574px) {
  .cid-sPvsS1wj5V .features-image:nth-child(2) {
    padding-top: 45px;
  }
}
.cid-sPvsS1wj5V .card {
  padding: 0px 10px;
  width: auto;
  border-radius: 0;
}
.cid-sPvsS1wj5V .card.align-center {
  position: absolute;
  left: 20px;
  top: 20px;
}
.cid-sPvsS1wj5V .name {
  margin-top: 27px;
  color: #111213;
}
.cid-sPvsS1wj5V .price {
  margin-top: 1px;
  color: #52586a;
  margin-bottom: 7px;
}
.cid-sPvsS1wj5V .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
  margin-bottom: 35px;
}
.cid-sPvsS1wj5V .mbr-section-title {
  text-align: center;
  color: #b18161;
  padding-bottom: 20px;
  margin: auto;
  text-transform: uppercase;
}
.cid-sPvsS1wj5V .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.cid-sPvsS1wj5V .item-img:hover .inner {
  transform: scale(1.1, 1.1);
}
.cid-sPvsS1wj5V .mbr-iconfont::before {
  font-size: 14px;
}
.cid-sPvsS1wj5V .tag1 {
  background-color: #3f37c9;
}
.cid-sPvsS1wj5V .tag2 {
  background-color: #111213;
}
.cid-sPvsS1wj5V .tag3 {
  background-color: #3f37c9;
}
.cid-sPvsS1wj5V .desc1,
.cid-sPvsS1wj5V .iconfont-wrapper {
  color: #ffffff;
}
.cid-sPvsS1wj5V .name,
.cid-sPvsS1wj5V .iconfont-wrapper,
.cid-sPvsS1wj5V .price {
  color: #ffffff;
}
.cid-sPvt4CpH3c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPvt4CpH3c textarea,
.cid-sPvt4CpH3c textarea:hover,
.cid-sPvt4CpH3c input,
.cid-sPvt4CpH3c input:hover,
.cid-sPvt4CpH3c input:focus,
.cid-sPvt4CpH3c textarea:focus {
  padding: 13px 0;
  border-color: transparent;
  padding-left: 30px;
  box-shadow: none;
}
.cid-sPvt4CpH3c .form-control {
  border-radius: 0 !important;
}
.cid-sPvt4CpH3c .form-check .form-check-input {
  float: initial;
  margin-top: 0;
  padding: 0 !important;
}
.cid-sPvt4CpH3c label {
  color: #040e17;
  font-family: 'DM Sans';
}
.cid-sPvt4CpH3c input {
  color: #040e17;
  font-family: 'DM Sans';
  background-color: transparent;
  border-bottom: 1px solid #E2E3E9 !important;
}
.cid-sPvt4CpH3c input::placeholder {
  color: #52586A;
  font-family: 'DM Sans';
}
.cid-sPvt4CpH3c textarea {
  background-color: transparent;
  color: #040e17;
  font-family: 'DM Sans';
  min-height: 66px;
  border-bottom: 1px solid #E2E3E9 !important;
}
.cid-sPvt4CpH3c textarea::placeholder {
  color: #52586A;
  font-family: 'DM Sans';
}
.cid-sPvt4CpH3c .btn > span {
  margin-left: 0.5rem;
  color: currentColor;
}
.cid-sPvt4CpH3c .row {
  flex-direction: row-reverse;
}
.cid-sPvt4CpH3c .btn {
  padding: 12px 35px 12px 35px !important;
}
.cid-sPvt4CpH3c .line {
  display: block;
  height: 1px;
  width: 100%;
  position: relative;
  background-color: #E2E3E9;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
  margin-top: -1px;
}
.cid-sPvt4CpH3c .line:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  top: 0;
  z-index: 1;
  background-color: #040e17;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cid-sPvt4CpH3c .form-group:hover .line:before,
.cid-sPvt4CpH3c .form-group:focus .line:before {
  width: 100%;
}
.cid-sPvt4CpH3c .form-group {
  position: relative;
  margin-bottom: 30px;
}
.cid-sPvt4CpH3c .form-group:before {
  font-size: 20px;
  color: black;
  display: block;
  font-weight: 400;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: initial;
}
.cid-sPvt4CpH3c .mbr-iconfont1 {
  position: absolute;
  top: 14px;
  font-size: 18px;
}
.cid-sPvt4CpH3c .align {
  margin-top: 5px;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}
.cid-sPvt4CpH3c .col-auto {
  display: inline-block;
}
.cid-sPvt4CpH3c .icon-transition span {
  border: 1px solid #e6e6e7;
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 45px;
  height: 45px;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sPvt4CpH3c button span:before {
  color: currentColor !important;
}
.cid-sPvt4CpH3c .mbr-iconfont {
  color: #111213;
  align-items: center;
}
.cid-sPvt4CpH3c .mbr-iconfont:before {
  color: currentColor;
  font-size: 18px;
  display: flex;
  justify-content: center;
}
.cid-sPvt4CpH3c .social-list {
  display: inline-block;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sPvt4CpH3c .icon-transition:hover .mbr-iconfont {
  color: #909190;
}
.cid-sPvt4CpH3c .social-media {
  padding: 0;
  text-align: left;
}
.cid-sPvt4CpH3c .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-sPvt4CpH3c .social-media ul li {
  padding: 2px;
  display: inline-block;
}
.cid-sPvt4CpH3c .mbr-list,
.cid-sPvt4CpH3c .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sPvt4CpH3c .social-list {
    text-align: center !important;
  }
}
.cid-sPvt4CpH3c .title {
  margin-bottom: 28px;
}
.cid-sPvt4CpH3c .text {
  margin-bottom: 20px;
  color: #111213;
  text-align: center;
}
.cid-sPvt4CpH3c .link1 {
  margin-bottom: 20px;
  position: relative;
}
.cid-sPvt4CpH3c .phone {
  margin-bottom: 42px;
}
.cid-sPvt4CpH3c .link:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale3d(0, 1, 1);
  -ms-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  -ms-transition: -ms-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.cid-sPvt4CpH3c .link:hover:after {
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.cid-sPvt4CpH3c .ph {
  font-weight: 600;
}
.cid-sPvt4CpH3c .link {
  font-weight: 400 !important;
}
@media (max-width: 768px) {
  .cid-sPvt4CpH3c .col-md-8 {
    margin-top: 20px;
  }
}
.cid-sPvt4CpH3c .title,
.cid-sPvt4CpH3c .social-media,
.cid-sPvt4CpH3c .link1,
.cid-sPvt4CpH3c .phone {
  color: #111213;
}
.cid-sPvt4CpH3c .title,
.cid-sPvt4CpH3c .social-media,
.cid-sPvt4CpH3c .link1,
.cid-sPvt4CpH3c .phone,
.cid-sPvt4CpH3c .text {
  text-align: center;
}
.cid-sPvsVporXw .google-map {
  filter: grayscale(0.9);
  height: 34rem;
  position: relative;
}
.cid-sPvsVporXw .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sPvsVporXw .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-sPvsVporXw .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sPvsVporXw .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sPvsW2oUQd {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sPvsW2oUQd .l {
  display: inline !important;
}
.cid-sPvsW2oUQd .icon-transition span {
  border: 1px solid #e5e6ef;
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 40px;
  height: 40px;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sPvsW2oUQd .mbr-iconfont {
  color: #111213;
  align-items: center;
}
.cid-sPvsW2oUQd .mbr-iconfont:before {
  font-size: 14px;
  display: flex;
  justify-content: center;
}
.cid-sPvsW2oUQd .social-list {
  width: auto;
}
.cid-sPvsW2oUQd .social-media {
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}
.cid-sPvsW2oUQd .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-sPvsW2oUQd .social-media ul li {
  padding: 2px;
  display: inline-block;
}
.cid-sPvsW2oUQd .icon-transition:hover .mbr-iconfont {
  color: #909190;
}
@media (max-width: 767px) {
  .cid-sPvsW2oUQd .social-list {
    text-align: center !important;
  }
}
.cid-sPvsW2oUQd .mbr-section-title {
  margin-bottom: 30px;
}
.cid-sPvsW2oUQd a.nav-link:after {
  background-color: #111213;
  content: "" !important;
  display: block !important;
  position: relative;
  z-index: 1;
  top: auto;
  bottom: -4px;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.cid-sPvsW2oUQd a.nav-link:hover:after {
  opacity: 1;
  width: 100%;
}
.cid-sPvsW2oUQd a.nav-link:hover {
  color: #111213 !important;
}
.cid-sPvsW2oUQd .navbar-nav {
  display: block;
  text-align: center;
  margin-bottom: 26px;
}
.cid-sPvsW2oUQd .nav-link {
  font-weight: 600 !important;
}
.cid-sPvsW2oUQd .inner1 {
  width: auto;
}
.cid-sPvsW2oUQd .mbr-text {
  color: #ffffff;
}
.cid-sPvsW2oUQd .line {
  height: 1px;
  width: 100%;
  background-color: #e5e6ef;
  margin-bottom: 30px;
}
.cid-sPvsW2oUQd a {
  font-weight: 400 !important;
}
@media (max-width: 540px) {
  .cid-sPvsW2oUQd .navbar-nav {
    display: flex;
    flex-direction: column;
  }
  .cid-sPvsW2oUQd .l {
    display: inline !important;
    width: auto;
    margin-top: 15px;
  }
  .cid-sPvsW2oUQd .nav-link {
    display: inline;
    width: auto;
  }
}
.cid-sPvsW2oUQd .inner {
  position: relative;
  display: inline-block;
  padding: 0em 0.8em !important;
}
.cid-sPvsW2oUQd .mbr-section-title,
.cid-sPvsW2oUQd .social-media {
  text-align: center;
  color: #111213;
}
.cid-sPvsW2oUQd .mbr-section-title,
.cid-sPvsW2oUQd .social-media,
.cid-sPvsW2oUQd .navbar-nav {
  color: #ffffff;
}
.cid-uY61PBxkzn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uY61PBxkzn nav.navbar {
  position: fixed;
}
.cid-uY61PBxkzn .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uY61PBxkzn .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uY61PBxkzn .dropdown-item:hover,
.cid-uY61PBxkzn .dropdown-item:focus {
  color: #111213 !important;
}
.cid-uY61PBxkzn .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-uY61PBxkzn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0rem;
  margin-top: 0rem;
  height: 2px !important;
}
.cid-uY61PBxkzn .nav-link {
  position: relative;
  padding: 0;
  font-weight: 600 !important;
  display: block !important;
}
.cid-uY61PBxkzn .container {
  display: flex;
  margin: auto;
}
.cid-uY61PBxkzn .iconfont-wrapper {
  font-size: 1.5rem;
}
.cid-uY61PBxkzn .dropdown-menu,
.cid-uY61PBxkzn .navbar.opened {
  background: #111213 !important;
}
.cid-uY61PBxkzn .nav-item:focus,
.cid-uY61PBxkzn .nav-link:focus {
  outline: none;
}
.cid-uY61PBxkzn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uY61PBxkzn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uY61PBxkzn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-uY61PBxkzn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uY61PBxkzn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uY61PBxkzn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uY61PBxkzn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #111213;
}
.cid-uY61PBxkzn .navbar.opened {
  transition: all 0.3s;
}
.cid-uY61PBxkzn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uY61PBxkzn .navbar .navbar-logo img {
  width: auto;
}
.cid-uY61PBxkzn .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uY61PBxkzn .navbar.collapsed {
  justify-content: center;
}
.cid-uY61PBxkzn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uY61PBxkzn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uY61PBxkzn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uY61PBxkzn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uY61PBxkzn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uY61PBxkzn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uY61PBxkzn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uY61PBxkzn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uY61PBxkzn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uY61PBxkzn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uY61PBxkzn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uY61PBxkzn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uY61PBxkzn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uY61PBxkzn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uY61PBxkzn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uY61PBxkzn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uY61PBxkzn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uY61PBxkzn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uY61PBxkzn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uY61PBxkzn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uY61PBxkzn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uY61PBxkzn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uY61PBxkzn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uY61PBxkzn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 104px;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uY61PBxkzn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uY61PBxkzn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uY61PBxkzn .dropdown-item.active,
.cid-uY61PBxkzn .dropdown-item:active {
  background-color: transparent;
}
.cid-uY61PBxkzn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uY61PBxkzn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uY61PBxkzn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uY61PBxkzn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111213;
}
.cid-uY61PBxkzn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uY61PBxkzn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uY61PBxkzn ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-uY61PBxkzn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uY61PBxkzn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uY61PBxkzn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uY61PBxkzn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uY61PBxkzn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uY61PBxkzn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uY61PBxkzn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uY61PBxkzn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uY61PBxkzn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uY61PBxkzn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uY61PBxkzn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uY61PBxkzn .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-uY61PBxkzn a.nav-link {
  display: flex;
  flex-direction: column;
}
.cid-uY61PBxkzn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uY61PBxkzn .navbar {
    height: 70px;
  }
  .cid-uY61PBxkzn .navbar.opened {
    height: auto;
  }
  .cid-uY61PBxkzn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uY61PBxkzn a {
  display: inline;
}
.cid-uY61PBxkzn img {
  display: inline;
  padding-right: 10px;
}
.cid-uY61PBxkzn .dropdown-toggle:after {
  display: block;
  border-top: initial !important;
}
.cid-uY61PBxkzn .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uY61PBxkzn .dropdown-item:hover {
  color: #52586a !important;
}
@media (max-width: 990px) {
  .cid-uY61PBxkzn .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uY61PBxkzn .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-uY61PBxkzn .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uY61PBxkzn .nav-item {
  margin-right: 32px;
}
.cid-uY61PBxkzn .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-uY61PBxkzn ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-uY61PBxkzn .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-uY61PBxkzn .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-uY61PBxkzn .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-uY61PBxkzn .mbr-iconfont {
  margin-left: 7px;
  margin-right: 7px;
  color: #ffffff;
}
.cid-uY61PBxkzn .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-uY61PBxkzn .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-uY61PBxkzn .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-uY61PBxkzn .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uY61PBxkzn .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-uY61PBxkzn .dropdown-item:focus {
  color: #52586a !important;
}
@media (max-width: 945px) {
  .cid-uY61PBxkzn .top {
    margin-top: 25px;
  }
}
.cid-uY61PBxkzn .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-uY61PBxkzn .container,
  .cid-uY61PBxkzn .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uY61PBxkzn li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-uY61PBxkzn ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-uY61PBxkzn .icons-menu {
    min-width: initial !important;
  }
  .cid-uY61PBxkzn a.btn {
    margin-top: 10px;
  }
}
.cid-uY61PBxkzn a.btn > span {
  margin-left: 0.5rem;
}
.cid-uY61PBxkzn a.nav-link:after {
  background-color: #111213;
  content: "" !important;
  display: block !important;
  position: relative;
  z-index: 1;
  top: auto;
  bottom: -4px;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.cid-uY61PBxkzn a.nav-link:hover:after {
  opacity: 1;
  width: 100%;
}
.cid-uY61PBxkzn a.nav-link:hover {
  color: #111213 !important;
}
.cid-uY61PBxkzn .dropdown-menu > a {
  color: #909190 !important;
  background-color: #111213 !important;
  font-size: 16px;
}
.cid-uY61PBxkzn .dropdown-menu > a:hover {
  color: #ffffff !important;
  background-color: #111213 !important;
}
.cid-uY61PBxkzn a.dropdown-item {
  color: #909190 !important;
  background-color: #111213 !important;
  font-size: 16px;
}
.cid-uY61PBxkzn a.dropdown-item:hover {
  color: #ffffff !important;
  background-color: #111213 !important;
}
.cid-uY61PBxkzn .nav-link > .mbr-iconfont {
  font-size: 19px !important;
}
.cid-uY61PBxkzn .navbar-toggler:focus {
  box-shadow: none !important;
}
.cid-uY61PCY2ub {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background3-1170x780.jpg");
}
.cid-uY61PCY2ub .mbr-section-subtitle {
  color: #111213;
  padding-bottom: 13px;
  text-transform: uppercase;
  text-align: center;
}
.cid-uY61PCY2ub .mbr-section-title {
  padding-bottom: 30px;
  color: #111213;
  text-align: center;
}
.cid-uY61PCY2ub .role {
  color: #52586a;
}
.cid-uY61PCY2ub .name {
  color: #111213;
}
.cid-uY61PCY2ub a {
  font-weight: 400 !important;
}
.cid-uY61PEfLHR {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uY61PEfLHR .item-wrapper {
  position: relative;
}
.cid-uY61PEfLHR .features-image {
  padding-top: 40px;
}
.cid-uY61PEfLHR .features-image:first-child {
  padding-top: 0px;
}
.cid-uY61PEfLHR .features-image:nth-child(2) {
  padding-top: 0px;
}
.cid-uY61PEfLHR .features-image:nth-child(3) {
  padding-top: 0px;
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-uY61PEfLHR .features-image {
    padding-top: 40px;
  }
  .cid-uY61PEfLHR .features-image:first-child {
    padding-top: 0px;
  }
  .cid-uY61PEfLHR .features-image:nth-child(2) {
    padding-top: 0px;
  }
  .cid-uY61PEfLHR .features-image:nth-child(3) {
    padding-top: 40px;
  }
}
@media (max-width: 574px) {
  .cid-uY61PEfLHR .features-image {
    padding-top: 40px;
  }
  .cid-uY61PEfLHR .features-image:first-child {
    padding-top: 0px;
  }
  .cid-uY61PEfLHR .features-image:nth-child(2) {
    padding-top: 40px;
  }
  .cid-uY61PEfLHR .features-image:nth-child(3) {
    padding-top: 40px;
  }
}
.cid-uY61PEfLHR .name {
  color: #ffe3e1;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-uY61PEfLHR .price {
  color: #ffffff;
  margin-top: 10px;
  font-size: 28px;
  text-align: center;
}
.cid-uY61PEfLHR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}
.cid-uY61PEfLHR .mbr-section-title {
  text-align: center;
  color: #b18161;
  padding-bottom: 20px;
  margin: auto;
  text-transform: uppercase;
}
.cid-uY61PEfLHR .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.cid-uY61PEfLHR .item:hover .inner {
  transform: scale(1.1, 1.1);
}
.cid-uY61PEfLHR .mbr-iconfont::before {
  font-size: 14px;
}
.cid-uY61PEfLHR .text {
  margin-top: 27px;
  padding-left: 50px;
  position: relative;
}
.cid-uY61PEfLHR .name:before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 35px;
  height: 2px;
  content: "";
  display: block;
  background-color: #000000;
}
.cid-uY61PEfLHR .name:after {
  content: '•';
  font-family: fontello;
  display: inline-block;
  vertical-align: baseline;
  font-size: inherit;
  font-weight: 400;
  font-style: normal;
  margin: 0 0.75em;
  color: #909190;
}
.cid-uY61PEfLHR .name,
.cid-uY61PEfLHR .name2 {
  width: auto;
  display: inline;
}
.cid-uY61PEfLHR .name > a:hover {
  color: #3843c7 !important;
}
.cid-uY61PEfLHR .name2 > a:hover {
  color: #3843c7 !important;
}
.cid-uY61PEfLHR a {
  font-weight: 400 !important;
}
.cid-uY61PFPyqP {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uY61PFPyqP .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #b18161;
  text-transform: uppercase;
}
.cid-uY61PFPyqP .mbr-section-title {
  margin-bottom: 30px;
  line-height: 0.8;
}
.cid-uY61PFPyqP .mbr-text {
  color: #52586a;
  margin-bottom: 40px;
}
.cid-uY61PFPyqP .desc {
  color: #111213;
}
.cid-uY61PFPyqP .desc1 {
  padding: 0px 10px;
  background: #3f37c9;
  display: inline;
  width: auto;
  color: #ffffff;
}
.cid-uY61PFPyqP .card {
  width: 100%;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 30px;
}
.cid-uY61PFPyqP .name {
  margin-bottom: 20px;
}
.cid-uY61PFPyqP .price {
  width: auto;
  display: inline;
}
.cid-uY61PFPyqP .price-line {
  display: block;
  margin-bottom: 27px;
}
.cid-uY61PFPyqP .plus1 {
  display: inline;
  width: auto;
  color: #111213;
}
.cid-uY61PFPyqP .desc2 {
  display: inline;
  width: auto;
  color: #909190;
}
.cid-uY61PFPyqP .new-price {
  width: auto;
  display: inline;
}
.cid-uY61PFPyqP .mbr-section-btn {
  margin-bottom: 34px;
}
.cid-uY61PFPyqP .price-line1 {
  margin-bottom: 10px;
  color: #111213;
}
.cid-uY61PFPyqP .price-line1:last-child {
  margin-bottom: 0px;
}
.cid-uY61PFPyqP .btn {
  margin-top: 0;
  margin-bottom: 10px;
}
.cid-uY61PFPyqP .plus {
  color: #52586a;
}
.cid-uY61PFPyqP .desc,
.cid-uY61PFPyqP .plus {
  display: inline-block;
  width: auto;
}
.cid-uY61PFPyqP .mbr-text,
.cid-uY61PFPyqP .mbr-section-btn {
  color: #52586a;
}
.cid-uY61PFPyqP .right {
  padding-left: 10px;
}
@media (max-width: 768px) {
  .cid-uY61PFPyqP .right {
    padding-left: 0;
    padding-top: 30px;
  }
}
.cid-uY61PFPyqP .name,
.cid-uY61PFPyqP .card,
.cid-uY61PFPyqP .price-line {
  text-align: center;
}
.cid-uY61PFPyqP .mbr-text,
.cid-uY61PFPyqP .mbr-section-btn,
.cid-uY61PFPyqP .price-line1 {
  text-align: justify;
}
.cid-uY61PH0Y3J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/lourakia204-287x198.jpeg");
  position: relative;
  overflow: hidden;
}
.cid-uY61PH0Y3J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY61PH0Y3J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY61PH0Y3J .decor-wrapper {
  position: absolute;
  top: 0;
  height: 100%;
  padding: 32px 0;
  z-index: 1;
}
.cid-uY61PH0Y3J .decor-wrapper .decor {
  height: 100%;
  width: 400px;
  border: 1px solid #111213;
}
.cid-uY61PH0Y3J .decor-wrapper .decor_1 {
  box-shadow: inset 0 0 0 2px #52586a;
}
.cid-uY61PH0Y3J .decor-wrapper .decor_2 {
  box-shadow: inset 0 0 0 2px #52586a;
}
.cid-uY61PH0Y3J .decoration_1 {
  left: -100px;
}
@media (max-width: 1640px) {
  .cid-uY61PH0Y3J .decoration_1 {
    left: -230px;
  }
}
@media (max-width: 1440px) {
  .cid-uY61PH0Y3J .decoration_1 {
    left: -250px;
  }
}
@media (max-width: 1200px) {
  .cid-uY61PH0Y3J .decoration_1 {
    left: -300px;
  }
}
@media (max-width: 992px) {
  .cid-uY61PH0Y3J .decoration_1 {
    left: -380px;
  }
}
.cid-uY61PH0Y3J .decoration_2 {
  right: -100px;
}
@media (max-width: 1640px) {
  .cid-uY61PH0Y3J .decoration_2 {
    right: -230px;
  }
}
@media (max-width: 1440px) {
  .cid-uY61PH0Y3J .decoration_2 {
    right: -250px;
  }
}
@media (max-width: 1200px) {
  .cid-uY61PH0Y3J .decoration_2 {
    right: -300px;
  }
}
@media (max-width: 992px) {
  .cid-uY61PH0Y3J .decoration_2 {
    right: -380px;
  }
}
.cid-uY61PH0Y3J .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
  padding: 120px 0;
}
@media (max-width: 1440px) {
  .cid-uY61PH0Y3J .content-wrapper {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .cid-uY61PH0Y3J .content-wrapper {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uY61PH0Y3J .content-wrapper {
    padding: 0 16px;
  }
}
.cid-uY61PH0Y3J .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uY61PH0Y3J .content-wrapper .text-wrapper .mbr-text {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uY61PH0Y3J .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uY61PH0Y3J .content-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-uY61PH0Y3J .mbr-section-title {
  color: #181824;
}
.cid-uY61PH0Y3J .mbr-text,
.cid-uY61PH0Y3J .text-wrapper {
  color: #54547e;
  text-align: center;
}
.cid-uY61PH0Y3J .mbr-section-title,
.cid-uY61PH0Y3J .mbr-section-btn,
.cid-uY61PH0Y3J .icon-wrapper {
  text-align: center;
}
.cid-uY61PIerNW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background5-1170x780.jpg");
}
.cid-uY61PIerNW .container {
  max-width: 1132px;
}
.cid-uY61PIerNW .col-md-7 {
  margin: auto !important;
}
@media (max-width: 992px) {
  .cid-uY61PIerNW .b {
    margin-bottom: 20px;
  }
}
.cid-uY61PJlEbp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uY61PJlEbp .item-wrapper {
  position: relative;
}
.cid-uY61PJlEbp .features-image {
  padding-top: 45px;
}
.cid-uY61PJlEbp .features-image:first-child {
  padding-top: 0px;
}
.cid-uY61PJlEbp .features-image:nth-child(2) {
  padding-top: 0px;
}
.cid-uY61PJlEbp .features-image:nth-child(3) {
  padding-top: 0px;
}
@media (max-width: 990px) {
  .cid-uY61PJlEbp .features-image:nth-child(3) {
    padding-top: 45px;
  }
}
@media (max-width: 574px) {
  .cid-uY61PJlEbp .features-image:nth-child(2) {
    padding-top: 45px;
  }
}
.cid-uY61PJlEbp .card {
  padding: 0px 10px;
  width: auto;
  border-radius: 0;
}
.cid-uY61PJlEbp .card.align-center {
  position: absolute;
  left: 20px;
  top: 20px;
}
.cid-uY61PJlEbp .name {
  margin-top: 27px;
  color: #111213;
}
.cid-uY61PJlEbp .price {
  margin-top: 1px;
  color: #52586a;
  margin-bottom: 7px;
}
.cid-uY61PJlEbp .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
  margin-bottom: 35px;
}
.cid-uY61PJlEbp .mbr-section-title {
  text-align: center;
  color: #b18161;
  padding-bottom: 20px;
  margin: auto;
  text-transform: uppercase;
}
.cid-uY61PJlEbp .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.cid-uY61PJlEbp .item-img:hover .inner {
  transform: scale(1.1, 1.1);
}
.cid-uY61PJlEbp .mbr-iconfont::before {
  font-size: 14px;
}
.cid-uY61PJlEbp .tag1 {
  background-color: #3f37c9;
}
.cid-uY61PJlEbp .tag2 {
  background-color: #111213;
}
.cid-uY61PJlEbp .tag3 {
  background-color: #3f37c9;
}
.cid-uY61PJlEbp .desc1,
.cid-uY61PJlEbp .iconfont-wrapper {
  color: #ffffff;
}
.cid-uY61PJlEbp .name,
.cid-uY61PJlEbp .iconfont-wrapper,
.cid-uY61PJlEbp .price {
  color: #ffffff;
}
.cid-uY61PKqci5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uY61PKqci5 textarea,
.cid-uY61PKqci5 textarea:hover,
.cid-uY61PKqci5 input,
.cid-uY61PKqci5 input:hover,
.cid-uY61PKqci5 input:focus,
.cid-uY61PKqci5 textarea:focus {
  padding: 13px 0;
  border-color: transparent;
  padding-left: 30px;
  box-shadow: none;
}
.cid-uY61PKqci5 .form-control {
  border-radius: 0 !important;
}
.cid-uY61PKqci5 .form-check .form-check-input {
  float: initial;
  margin-top: 0;
  padding: 0 !important;
}
.cid-uY61PKqci5 label {
  color: #040e17;
  font-family: 'DM Sans';
}
.cid-uY61PKqci5 input {
  color: #040e17;
  font-family: 'DM Sans';
  background-color: transparent;
  border-bottom: 1px solid #E2E3E9 !important;
}
.cid-uY61PKqci5 input::placeholder {
  color: #52586A;
  font-family: 'DM Sans';
}
.cid-uY61PKqci5 textarea {
  background-color: transparent;
  color: #040e17;
  font-family: 'DM Sans';
  min-height: 66px;
  border-bottom: 1px solid #E2E3E9 !important;
}
.cid-uY61PKqci5 textarea::placeholder {
  color: #52586A;
  font-family: 'DM Sans';
}
.cid-uY61PKqci5 .btn > span {
  margin-left: 0.5rem;
  color: currentColor;
}
.cid-uY61PKqci5 .row {
  flex-direction: row-reverse;
}
.cid-uY61PKqci5 .btn {
  padding: 12px 35px 12px 35px !important;
}
.cid-uY61PKqci5 .line {
  display: block;
  height: 1px;
  width: 100%;
  position: relative;
  background-color: #E2E3E9;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
  margin-top: -1px;
}
.cid-uY61PKqci5 .line:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  top: 0;
  z-index: 1;
  background-color: #040e17;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cid-uY61PKqci5 .form-group:hover .line:before,
.cid-uY61PKqci5 .form-group:focus .line:before {
  width: 100%;
}
.cid-uY61PKqci5 .form-group {
  position: relative;
  margin-bottom: 30px;
}
.cid-uY61PKqci5 .form-group:before {
  font-size: 20px;
  color: black;
  display: block;
  font-weight: 400;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: initial;
}
.cid-uY61PKqci5 .mbr-iconfont1 {
  position: absolute;
  top: 14px;
  font-size: 18px;
}
.cid-uY61PKqci5 .align {
  margin-top: 5px;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}
.cid-uY61PKqci5 .col-auto {
  display: inline-block;
}
.cid-uY61PKqci5 .icon-transition span {
  border: 1px solid #e6e6e7;
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 45px;
  height: 45px;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uY61PKqci5 button span:before {
  color: currentColor !important;
}
.cid-uY61PKqci5 .mbr-iconfont {
  color: #111213;
  align-items: center;
}
.cid-uY61PKqci5 .mbr-iconfont:before {
  color: currentColor;
  font-size: 18px;
  display: flex;
  justify-content: center;
}
.cid-uY61PKqci5 .social-list {
  display: inline-block;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uY61PKqci5 .icon-transition:hover .mbr-iconfont {
  color: #909190;
}
.cid-uY61PKqci5 .social-media {
  padding: 0;
  text-align: left;
}
.cid-uY61PKqci5 .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uY61PKqci5 .social-media ul li {
  padding: 2px;
  display: inline-block;
}
.cid-uY61PKqci5 .mbr-list,
.cid-uY61PKqci5 .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uY61PKqci5 .social-list {
    text-align: center !important;
  }
}
.cid-uY61PKqci5 .title {
  margin-bottom: 28px;
}
.cid-uY61PKqci5 .text {
  margin-bottom: 20px;
  color: #111213;
  text-align: center;
}
.cid-uY61PKqci5 .link1 {
  margin-bottom: 20px;
  position: relative;
}
.cid-uY61PKqci5 .phone {
  margin-bottom: 42px;
}
.cid-uY61PKqci5 .link:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale3d(0, 1, 1);
  -ms-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  -ms-transition: -ms-transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.cid-uY61PKqci5 .link:hover:after {
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.cid-uY61PKqci5 .ph {
  font-weight: 600;
}
.cid-uY61PKqci5 .link {
  font-weight: 400 !important;
}
@media (max-width: 768px) {
  .cid-uY61PKqci5 .col-md-8 {
    margin-top: 20px;
  }
}
.cid-uY61PKqci5 .title,
.cid-uY61PKqci5 .social-media,
.cid-uY61PKqci5 .link1,
.cid-uY61PKqci5 .phone {
  color: #111213;
}
.cid-uY61PKqci5 .title,
.cid-uY61PKqci5 .social-media,
.cid-uY61PKqci5 .link1,
.cid-uY61PKqci5 .phone,
.cid-uY61PKqci5 .text {
  text-align: center;
}
.cid-uY61PLu65V .google-map {
  filter: grayscale(0.9);
  height: 34rem;
  position: relative;
}
.cid-uY61PLu65V .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uY61PLu65V .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-uY61PLu65V .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uY61PLu65V .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uY61PMjz7t {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uY61PMjz7t .l {
  display: inline !important;
}
.cid-uY61PMjz7t .icon-transition span {
  border: 1px solid #e5e6ef;
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 40px;
  height: 40px;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uY61PMjz7t .mbr-iconfont {
  color: #111213;
  align-items: center;
}
.cid-uY61PMjz7t .mbr-iconfont:before {
  font-size: 14px;
  display: flex;
  justify-content: center;
}
.cid-uY61PMjz7t .social-list {
  width: auto;
}
.cid-uY61PMjz7t .social-media {
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}
.cid-uY61PMjz7t .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uY61PMjz7t .social-media ul li {
  padding: 2px;
  display: inline-block;
}
.cid-uY61PMjz7t .icon-transition:hover .mbr-iconfont {
  color: #909190;
}
@media (max-width: 767px) {
  .cid-uY61PMjz7t .social-list {
    text-align: center !important;
  }
}
.cid-uY61PMjz7t .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uY61PMjz7t a.nav-link:after {
  background-color: #111213;
  content: "" !important;
  display: block !important;
  position: relative;
  z-index: 1;
  top: auto;
  bottom: -4px;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.cid-uY61PMjz7t a.nav-link:hover:after {
  opacity: 1;
  width: 100%;
}
.cid-uY61PMjz7t a.nav-link:hover {
  color: #111213 !important;
}
.cid-uY61PMjz7t .navbar-nav {
  display: block;
  text-align: center;
  margin-bottom: 26px;
}
.cid-uY61PMjz7t .nav-link {
  font-weight: 600 !important;
}
.cid-uY61PMjz7t .inner1 {
  width: auto;
}
.cid-uY61PMjz7t .mbr-text {
  color: #ffffff;
}
.cid-uY61PMjz7t .line {
  height: 1px;
  width: 100%;
  background-color: #e5e6ef;
  margin-bottom: 30px;
}
.cid-uY61PMjz7t a {
  font-weight: 400 !important;
}
@media (max-width: 540px) {
  .cid-uY61PMjz7t .navbar-nav {
    display: flex;
    flex-direction: column;
  }
  .cid-uY61PMjz7t .l {
    display: inline !important;
    width: auto;
    margin-top: 15px;
  }
  .cid-uY61PMjz7t .nav-link {
    display: inline;
    width: auto;
  }
}
.cid-uY61PMjz7t .inner {
  position: relative;
  display: inline-block;
  padding: 0em 0.8em !important;
}
.cid-uY61PMjz7t .mbr-section-title,
.cid-uY61PMjz7t .social-media {
  text-align: center;
  color: #111213;
}
.cid-uY61PMjz7t .mbr-section-title,
.cid-uY61PMjz7t .social-media,
.cid-uY61PMjz7t .navbar-nav {
  color: #ffffff;
}
