﻿@media (max-width: 767px) {
  .testimonials-slider .carousel-inner .carousel-item > div {
      display: none;
  }
  .testimonials-slider .carousel-inner .carousel-item > div:first-child {
      display: block;
  }
  .testimonials-slider .carousel-inner .carousel-item-right.active,
  .testimonials-slider .carousel-inner .carousel-item-next {
    transform: translateX(100%);
  }

  .testimonials-slider .carousel-inner .carousel-item-left.active, 
  .testimonials-slider .carousel-inner .carousel-item-prev {
    transform: translateX(-100%);
  }
}

@media (min-width: 768px) {
  .testimonials-slider .carousel-inner .carousel-item.active,
  .testimonials-slider .carousel-inner .carousel-item-next,
  .testimonials-slider .carousel-inner .carousel-item-prev {
    display: flex;
  }

  .testimonials-slider .carousel-inner .carousel-item-right.active,
  .testimonials-slider .carousel-inner .carousel-item-next {
    transform: translateX(50%);
  }

  .testimonials-slider .carousel-inner .carousel-item-left.active, 
  .testimonials-slider .carousel-inner .carousel-item-prev {
    transform: translateX(-50%)
  }
}
  
.testimonials-slider .carousel-inner .carousel-item-right,
.testimonials-slider .carousel-inner .carousel-item-left{ 
  transform: translateX(0);
}
/* LISƒYS */
.nav-item.active {
  color: #363638 !important;
}
.nav-item.active .nav-link {
  color: #363638 !important;
  border-top: 1px solid black;
}

/* LOPPU */
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Fauna One', serif;
  font-size: 5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Fauna One', serif;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Fauna One', serif;
  font-size: 0.9375rem;
}
.display-4 > .mbr-iconfont {
  font-size: 0.9375rem;
}
.display-5 {
  font-family: 'Fauna One', serif;
  font-size: 1.3rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.3rem;
}
.display-7 {
  font-family: 'Fauna One', serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.75rem;
    font-size: calc( 0.978125rem + (0.9375 - 0.978125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.978125rem + (0.9375 - 0.978125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 6px;
}
.btn-sm {
  padding: 18px 38px;
  border-radius: 6px;
}
.btn-md {
  padding: 18px 42px;
  border-radius: 6px;
}
.btn-lg {
  padding: 20px 47px;
  border-radius: 6px;
}
.bg-primary {
  background-color: #0089d2 !important;
}
.bg-success {
  background-color: #363638 !important;
}
.bg-info {
  background-color: #83868c !important;
}
.bg-warning {
  background-color: #eff2f7 !important;
}
.bg-danger {
  background-color: #0a1126 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #0089d2 !important;
  border-color: #0089d2 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #005785 !important;
  border-color: #005785 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #005785 !important;
  border-color: #005785 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #363638 !important;
  border-color: #363638 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #101011 !important;
  border-color: #101011 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #101011 !important;
  border-color: #101011 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #83868c !important;
  border-color: #83868c !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #5e6065 !important;
  border-color: #5e6065 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5e6065 !important;
  border-color: #5e6065 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #363638 !important;
  border-color: #363638 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #101011 !important;
  border-color: #101011 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #101011 !important;
  border-color: #101011 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #eff2f7 !important;
  border-color: #eff2f7 !important;
  color: #4d6a9a !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #4d6a9a !important;
  background-color: #bcc9de !important;
  border-color: #bcc9de !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #4d6a9a !important;
  background-color: #bcc9de !important;
  border-color: #bcc9de !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #0a1126 !important;
  border-color: #0a1126 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #00466c;
  color: #00466c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #0089d2;
  border-color: #0089d2;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0089d2 !important;
  border-color: #0089d2 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #040404;
  color: #040404;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #363638;
  border-color: #363638;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #363638 !important;
  border-color: #363638 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #515358;
  color: #515358;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #83868c;
  border-color: #83868c;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #83868c !important;
  border-color: #83868c !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #040404;
  color: #040404;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #363638;
  border-color: #363638;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #363638 !important;
  border-color: #363638 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #abbbd5;
  color: #abbbd5;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #4d6a9a;
  background-color: #eff2f7;
  border-color: #eff2f7;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #4d6a9a !important;
  background-color: #eff2f7 !important;
  border-color: #eff2f7 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #0a1126;
  border-color: #0a1126;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #0a1126 !important;
  border-color: #0a1126 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #0089d2 !important;
}
.text-secondary {
  color: #363638 !important;
}
.text-success {
  color: #363638 !important;
}
.text-info {
  color: #83868c !important;
}
.text-warning {
  color: #eff2f7 !important;
}
.text-danger {
  color: #0a1126 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #00466c !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #040404 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #040404 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #515358 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #abbbd5 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #83868c;
}
.alert-warning {
  background-color: #eff2f7;
}
.alert-danger {
  background-color: #0a1126;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0089d2;
  border-color: #0089d2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0089d2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9fdeff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a8a8ab;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c5c7c9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #acbbe9;
}
.scrollToTop_wraper {
  display: none !important;
}
.form-control {
  font-family: 'Fauna One', serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.2rem;
}
blockquote {
  border-color: #0089d2;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.btn-primary:hover {
  color: #0089d2 !important;
  background: white !important;
  border-color: white !important;
}
.form-control,
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0089d2;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0089d2;
  border-bottom-color: #0089d2;
}
.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: #0089d2 !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: #363638 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230089d2' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-s2V9RwV6vb .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-s2V9RwV6vb .navbar-fixed-top {
  padding-top: 0;
}
.cid-s2V9RwV6vb .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-s2V9RwV6vb .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-s2V9RwV6vb .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-s2V9RwV6vb .navbar-buttons {
  flex-wrap: wrap;
}
.cid-s2V9RwV6vb .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s2V9RwV6vb .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-s2V9RwV6vb .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-s2V9RwV6vb .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s2V9RwV6vb .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s2V9RwV6vb .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s2V9RwV6vb .menu-content-top {
  background: #ffffff;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-s2V9RwV6vb .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-s2V9RwV6vb .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-s2V9RwV6vb .dropdown-item,
.cid-s2V9RwV6vb .nav-link,
.cid-s2V9RwV6vb .brand-name {
  font-style: normal;
}
.cid-s2V9RwV6vb .dropdown-item:hover,
.cid-s2V9RwV6vb .nav-link:hover,
.cid-s2V9RwV6vb .brand-name:hover {
  color: #363638 !important;
}
.cid-s2V9RwV6vb .dropdown-menu {
  background-color: #ffffff;
}
.cid-s2V9RwV6vb .dropdown-item:active {
  background-color: #ffffff;
}
.cid-s2V9RwV6vb .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-s2V9RwV6vb .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s2V9RwV6vb .nav-item {
  position: relative;
}
.cid-s2V9RwV6vb .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-s2V9RwV6vb .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-s2V9RwV6vb .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-s2V9RwV6vb .nav-link {
    line-height: 6.13;
  }
  .cid-s2V9RwV6vb .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #363638;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-s2V9RwV6vb .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
  .cid-s2V9RwV6vb .dropdown-item {
    color: #83868c !important;
    border-bottom: 0px solid #363638;
  }
}
.cid-s2V9RwV6vb .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s2V9RwV6vb .content-text {
  margin-bottom: 0;
}
.cid-s2V9RwV6vb .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-s2V9RwV6vb .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0089d2;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-s2V9RwV6vb .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-s2V9RwV6vb .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-s2V9RwV6vb .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-s2V9RwV6vb .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s2V9RwV6vb .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-s2V9RwV6vb .content-right-side {
  text-align: center;
}
.cid-s2V9RwV6vb .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-s2V9RwV6vb .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-s2V9RwV6vb .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #363638;
}
.cid-s2V9RwV6vb .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-s2V9RwV6vb .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s2V9RwV6vb .info-widget:first-child {
  margin-left: 0;
}
.cid-s2V9RwV6vb .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-s2V9RwV6vb .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-s2V9RwV6vb .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-s2V9RwV6vb .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #e1e3e6;
}
@media (min-width: 992px) {
  .cid-s2V9RwV6vb .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-s2V9RwV6vb .navbar {
    display: block;
    padding: 0;
  }
  .cid-s2V9RwV6vb .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-s2V9RwV6vb .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-s2V9RwV6vb .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-s2V9RwV6vb .navbar-toggler {
    display: none;
  }
  .cid-s2V9RwV6vb .navbar-collapse {
    justify-content: center;
  }
}
.cid-s2V9RwV6vb .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-s2V9RwV6vb .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-s2V9RwV6vb .btn-sm {
  padding: 13px 29px;
}
.cid-s2V9RwV6vb .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-s2V9RwV6vb .btn::after {
  background-color: #83868c;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-s2V9RwV6vb .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-s2V9RwV6vb .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-s2V9RwV6vb .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-s2V9RwV6vb .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-s2V9RwV6vb .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s2V9RwV6vb .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-s2V9RwV6vb .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s2V9RwV6vb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s2V9RwV6vb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s2V9RwV6vb .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-s2V9RwV6vb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s2V9RwV6vb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s2V9RwV6vb .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s2V9RwV6vb .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s2V9RwV6vb .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-s2V9RwV6vb .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-s2V9RwV6vb .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s2V9RwV6vb .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s2V9RwV6vb .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s2V9RwV6vb button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-s2V9RwV6vb button.navbar-toggler:focus {
  outline: none;
}
.cid-s2V9RwV6vb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0089d2;
}
.cid-s2V9RwV6vb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-s2V9RwV6vb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s2V9RwV6vb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s2V9RwV6vb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-s2V9RwV6vb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s2V9RwV6vb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-s2V9RwV6vb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-s2V9RwV6vb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s2V9RwV6vb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s2V9RwV6vb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s2V9RwV6vb .collapsed .btn {
  display: flex;
}
.cid-s2V9RwV6vb .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s2V9RwV6vb .collapsed .navbar-collapse.collapsing,
.cid-s2V9RwV6vb .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s2V9RwV6vb .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s2V9RwV6vb .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s2V9RwV6vb .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s2V9RwV6vb .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s2V9RwV6vb .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s2V9RwV6vb .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-s2V9RwV6vb .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s2V9RwV6vb .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-s2V9RwV6vb .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s2V9RwV6vb .collapsed button.navbar-toggler {
  display: block;
}
.cid-s2V9RwV6vb .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-s2V9RwV6vb .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-s2V9RwV6vb .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-s2V9RwV6vb .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s2V9RwV6vb .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s2V9RwV6vb .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-s2V9RwV6vb .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-s2V9RwV6vb .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-s2V9RwV6vb .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-s2V9RwV6vb .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-s2V9RwV6vb .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-s2V9RwV6vb .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-s2V9RwV6vb .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-s2V9RwV6vb .navbar-collapse.collapsing,
  .cid-s2V9RwV6vb .navbar-collapse.show {
    display: block !important;
  }
  .cid-s2V9RwV6vb .navbar-collapse.collapsing .navbar-nav,
  .cid-s2V9RwV6vb .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s2V9RwV6vb .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s2V9RwV6vb .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s2V9RwV6vb .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-s2V9RwV6vb .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-s2V9RwV6vb .navbar-collapse.collapsing .navbar-buttons,
  .cid-s2V9RwV6vb .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-s2V9RwV6vb .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s2V9RwV6vb .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s2V9RwV6vb img {
    height: 3.8rem !important;
  }
  .cid-s2V9RwV6vb .btn {
    display: flex;
  }
  .cid-s2V9RwV6vb button.navbar-toggler {
    display: block;
  }
  .cid-s2V9RwV6vb .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-s2V9RwV6vb .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-s2V9RwV6vb .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-s2V9RwV6vb .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s2V9RwV6vb .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s2V9RwV6vb .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-s2V9RwV6vb .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-s2V9RwV6vb .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-s2V9RwV6vb .navbar-toggler {
  position: relative;
}
.cid-s2V9RwV6vb .dropdown-item.active,
.cid-s2V9RwV6vb .dropdown-item:active {
  color: initial;
}
.cid-s2V9RwV6vb .widget-title {
  color: #83868c;
}
.cid-s2V9RwV6vb .widget-text {
  color: #83868c;
}
.cid-s2V9RwV6vb .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-s2V9RwV6vb .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #0089d2;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-s2V9RwV6vb .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-s2V9RwV6vb .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #279e64;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-s2V9RwV6vb .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-s2V9RwV6vb .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-s2V9RwV6vb .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-s2V9RwV6vb .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-s2V9RwV6vb .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-s2V9RwV6vb .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-s2V9RwV6vb .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-s2V9RwV6vb .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-s2V9RwV6vb .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-s2V9RwV6vb .menu-content-top,
  .cid-s2V9RwV6vb .menu-bottom {
    padding: 0 15px;
  }
  .cid-s2V9RwV6vb button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-tLcjDAY8YS .modal-body .close {
  background: #1b1b1b;
}
.cid-tLcjDAY8YS .modal-body .close span {
  font-style: normal;
}
.cid-tLcjDAY8YS .carousel-inner > .active,
.cid-tLcjDAY8YS .carousel-inner > .next,
.cid-tLcjDAY8YS .carousel-inner > .prev {
  display: table;
}
.cid-tLcjDAY8YS .mbr-iconfont {
  font-family: 'Moririse2' !important;
}
.cid-tLcjDAY8YS .mbri-right:before {
  content: "\e909";
  font-weight: 900;
  padding-left: 5px;
}
.cid-tLcjDAY8YS .mbri-left:before {
  content: "\e90a";
  font-weight: 900;
  padding-right: 5px;
}
.cid-tLcjDAY8YS .carousel-control,
.cid-tLcjDAY8YS .carousel-indicators li {
  background-color: #0089d2 !important;
  opacity: 0.7!important;
  border: none;
}
.cid-tLcjDAY8YS .carousel-control:hover,
.cid-tLcjDAY8YS .carousel-indicators li:hover {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLcjDAY8YS .carousel-control .active,
.cid-tLcjDAY8YS .carousel-indicators li .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLcjDAY8YS .carousel-indicators .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLcjDAY8YS .carousel-control .icon-next,
.cid-tLcjDAY8YS .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tLcjDAY8YS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tLcjDAY8YS .col-10 {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-tLcjDAY8YS .col-10 {
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .cid-tLcjDAY8YS .carousel-control {
    width: 40px!important;
    height: 40px!important;
  }
  .cid-tLcjDAY8YS .mbr-iconfont {
    font-size: 1rem!important;
  }
}
@media (max-width: 767px) {
  .cid-tLcjDAY8YS .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tLcjDAY8YS .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tLcjDAY8YS .boxed-slider > div {
  position: relative;
}
.cid-tLcjDAY8YS .container img {
  width: 100%;
}
.cid-tLcjDAY8YS .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tLcjDAY8YS .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tLcjDAY8YS .mbr-table-cell {
  padding: 0;
}
.cid-tLcjDAY8YS .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tLcjDAY8YS .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-tLcjDAY8YS .mbr-overlay {
  z-index: 1;
}
.cid-tLcjDAY8YS .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
/* Lisäys */
/* .cid-tLcjDAY8YS .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;.cid-tLcjDAY8YS .carousel-item-next
  perspective: 1000px;
} */
@media (max-width: 576px) {
  .cid-tLcjDAY8YS .carousel-item .container {
    width: 100%;
  }
}
/* .cid-tLcjDAY8YS .carousel-item-next.carousel-item-left,
.cid-tLcjDAY8YS .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-tLcjDAY8YS .active.carousel-item-right,
.cid-tLcjDAY8YS .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-tLcjDAY8YS .active.carousel-item-left,
.cid-tLcjDAY8YS .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
} */
.cid-tLcjDAY8YS .mbr-slider .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all .3s;
}
.cid-tLcjDAY8YS .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLcjDAY8YS .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLcjDAY8YS .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tLcjDAY8YS .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLcjDAY8YS .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLcjDAY8YS .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-tLcjDAY8YS .mbr-slider .carousel-indicators li.active,
.cid-tLcjDAY8YS .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-tLcjDAY8YS .mbr-slider .carousel-indicators li::after,
.cid-tLcjDAY8YS .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tLcjDAY8YS .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tLcjDAY8YS .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tLcjDAY8YS .mbr-slider > .container img {
  width: 100%;
}
.cid-tLcjDAY8YS .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tLcjDAY8YS .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tLcjDAY8YS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tLcjDAY8YS .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tLcjDAY8YS .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tLcjDAY8YS .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-tLcjDAY8YS .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tLcjDAY8YS .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-tLcjDAY8YS .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tLcjDAY8YS .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tLcjDAY8YS .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tLcjDAY8YS .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tLcjDAY8YS .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tLcjDAY8YS H2 {
  text-align: center;
}
.cid-tLd01YLwQE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #0089d2;
}
.cid-tLd01YLwQE .mbr-text {
  letter-spacing: 0.1em;
}
.cid-tLd01YLwQE .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-tLcGTIgOKG {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease-in-out;
}
.cid-tLcGTIgOKG:hover {
  background-color: #f9f9f9;
}
.cid-tLcGTIgOKG .mbr-section-title {
  margin: 0;
}
.cid-tLcGTIgOKG .card-wrapper {
  z-index: 3;
}
.cid-tLcGTIgOKG .full-link {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tLcGTIgOKG .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tLcGTIgOKG .mbr-section-title,
.cid-tLcGTIgOKG .text-block {
  color: #0089d2;
}
.cid-tLcGSwzxw5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tLcGSwzxw5 .mbr-text,
.cid-tLcGSwzxw5 .ornament {
  color: #363638;
}
.cid-tLcIiB0PCY {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9f9f9;
}
.cid-tLcIiB0PCY H1 {
  color: #000000;
}
.cid-tLcIiB0PCY .mbr-text,
.cid-tLcIiB0PCY .mbr-section-btn {
  color: #000000;
}
.cid-tLcIiB0PCY .mbr-subtitle {
  color: #000000;
}
.cid-tLcIiB0PCY .mbr-text {
  margin-top: 1.5rem;
}
.cid-tLcIiB0PCY .mbr-section-btn {
  margin-top: 2rem;
}
.cid-tLcIiB0PCY .mbr-section-title,
.cid-tLcIiB0PCY .mbr-section-btn {
  color: #165788;
}
.cid-tLcPpXH0NQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #363638;
}
@media (max-width: 767px) {
  .cid-tLcPpXH0NQ .mbr-text {
    text-align: center;
  }
}
.cid-tLcPpXH0NQ .container-fluid {
  padding: 0;
}
.cid-tLcPpXH0NQ .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-tLcPpXH0NQ img {
  height: 100%;
  object-fit: cover;
}
.cid-tLcPpXH0NQ .mbr-figure {
  height: 100%;
}
.cid-tLcPpXH0NQ .col-lg-7 {
  padding: 0;
}
.cid-tLcPpXH0NQ .row {
  margin: 0;
}
.cid-tLcPpXH0NQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLcPpXH0NQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLcPpXH0NQ .mbr-text,
.cid-tLcPpXH0NQ .mbr-section-btn {
  color: #ffffff;
}
.cid-tLcPpXH0NQ H1 {
  color: #ffffff;
}
.cid-tLd8wd8LdQ {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-tLd8wd8LdQ .container.main,
.cid-tLd8wd8LdQ .container-fluid.main {
  padding-left: 30px;
  padding-right: 30px;
}
.cid-tLd8wd8LdQ .container .mbr-section-subtitle,
.cid-tLd8wd8LdQ .container-fluid .mbr-section-subtitle {
  color: #363638;
  margin-bottom: 10px;
}
.cid-tLd8wd8LdQ .container .mbr-section-title,
.cid-tLd8wd8LdQ .container-fluid .mbr-section-title {
  margin-bottom: 20px;
  color: #0089d2;
}
.cid-tLd8wd8LdQ .container .mbr-text,
.cid-tLd8wd8LdQ .container-fluid .mbr-text {
  color: #83868c;
}
.cid-tLd8wd8LdQ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0rem;
}
.cid-tLd8wd8LdQ .carousel-item > div {
  width: 100%;
}
.cid-tLd8wd8LdQ .carousel-item.active,
.cid-tLd8wd8LdQ .carousel-item-next,
.cid-tLd8wd8LdQ .carousel-item-prev {
  display: flex;
}
.cid-tLd8wd8LdQ .carousel-indicators {
  left: 0%;
  margin: 20px auto 0;
  align-items: center;
  bottom: -60px !important;
}
.cid-tLd8wd8LdQ .carousel-indicators .active {
  border: 3px solid #ffffff;
  background-color: #ffffff !important;
}
.cid-tLd8wd8LdQ .carousel-indicators li {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  transition: border 0.5s;
  background-color: #ffffff;
  font-size: 2rem;
  opacity: 1;
  border-width: 0px;
  margin: 6px;
}
.cid-tLd8wd8LdQ .carousel-indicators li:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  /* .cid-tLd8wd8LdQ .carousel-controls {
    display: none;
  } */
}
.cid-tLd8wd8LdQ .carousel-controls .carousel-control-prev,
.cid-tLd8wd8LdQ .carousel-controls .carousel-control-next {
  opacity: 1;
}
.cid-tLd8wd8LdQ .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 15px;
}
.cid-tLd8wd8LdQ .carousel-controls a span {
  padding: 16.5px;
  border-radius: 50%;
  color: #0089d2;
  background: #ffffff;
  font-weight: bold;
  box-shadow: 0 10px 30px 0 #e7eaf2;
}
.cid-tLd8wd8LdQ .carousel-controls a:hover span {
  opacity: 1;
}
.cid-tLd8wd8LdQ .card {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 40px 40px 30px;
  position: relative;
}
.cid-tLd8wd8LdQ .card .client-content {
  display: block;
}
.cid-tLd8wd8LdQ .card .client-content .service-icon {
  text-align: left;
  position: relative;
  display: block;
}
.cid-tLd8wd8LdQ .card .client-content .service-icon .front {
  color: #0089d2;
  font-size: 3.1875rem;
  position: relative;
  margin-bottom: 22px;
}
.cid-tLd8wd8LdQ .card .client-content .service-icon:after {
  opacity: 0.5;
  width: 76px;
  height: 76px;
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  margin-left: -13%;
  border-radius: 50%;
  z-index: 0;
}
.cid-tLd8wd8LdQ .card .client-content .card-text {
  margin-bottom: 25px;
  color: #83868c;
}
.cid-tLd8wd8LdQ .card .client-info {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 30px;
}
.cid-tLd8wd8LdQ .card .client-info::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -40px;
  right: -40px;
  height: 1px;
  background-color: #f9f9f9;
}
.cid-tLd8wd8LdQ .card .client-info .client-image {
  margin-right: 20px;
  flex: none;
  display: block;
}
.cid-tLd8wd8LdQ .card .client-info .client-image img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
  display: block;
  max-width: 100%;
}
.cid-tLd8wd8LdQ .card .client-info .name-job .signature {
  margin-bottom: 0;
  color: #0089d2;
}
.cid-tLd8wd8LdQ .card .client-info .name-job .profession {
  color: #83868c;
}
@media (min-width: 768px) {
  .cid-tLd8wd8LdQ .carousel-controls a {
    width: 5%;
  }
  .cid-tLd8wd8LdQ .client-info {
    flex-direction: column;
    justify-content: center;
  }
  .cid-tLd8wd8LdQ .client-info .client-image {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .cid-tLd8wd8LdQ * {
    text-align: center;
  }
}
.cid-tLd8wd8LdQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLd8wd8LdQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLd8wd8LdQ .container .mbr-section-subtitle {
  color: #363638;
}
.cid-tLd8wd8LdQ .card .client-content .card-text,
.cid-tLd8wd8LdQ .mbr-section-btn {
  color: #363638;
}
.cid-tLd8wd8LdQ .card .client-info .name-job .profession,
.cid-tLd8wd8LdQ .mbr-section-btn {
  color: #363638;
}
.cid-tQzNF45vSi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQzNF45vSi .mbr-section-title,
.cid-tQzNF45vSi .mbr-text {
  margin-bottom: 0;
}
.cid-tQzNF45vSi .title__block {
  margin-bottom: 45px;
}
.cid-tQzNF45vSi .mbr-text {
  color: #000000;
  letter-spacing: 0px;
}
.cid-tQzNF45vSi .mbr-section-title {
  margin-top: 15px;
  color: #0089d2;
}
.cid-tQzNF45vSi .card__block {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQzNF45vSi .card__block img {
  object-fit: cover;
  max-width: 70%;
  max-height: 70%;
}
.cid-tQzRPp0cpC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #363638;
}
.cid-tQzRPp0cpC .footer-item {
  padding: 30px;
}
.cid-tQzRPp0cpC .mbr-section-subtitle,
.cid-tQzRPp0cpC .address-text {
  margin-bottom: 1.5rem;
}
.cid-tQzRPp0cpC .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tQzRPp0cpC .social-row {
    padding-top: 1.5rem;
  }
}
.cid-tQzRPp0cpC .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQzRPp0cpC .row {
    text-align: center;
  }
  .cid-tQzRPp0cpC .social-row {
    justify-content: center;
  }
}
.cid-tQzRPp0cpC .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tQzRPp0cpC .footer-content {
    flex-wrap: wrap;
  }
}
.cid-tQzRPp0cpC .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-tQzRPp0cpC .mbr-text {
  color: #ffffff;
}
.cid-tQzRPp0cpC .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tQzRPp0cpC .list a {
  color: #ffffff;
}
.cid-tQzRPp0cpC .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-tQzRPp0cpC .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-tQzRPp0cpC .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-tQzRPp0cpC .mbr-iconfont {
  color: #ffffff;
}
.cid-tQzRPp0cpC .mbr-section-subtitle {
  color: #0089d2;
}
.cid-tQzRPp0cpC .address-text {
  color: #0089d2;
}
.cid-tLhGcPun2f .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tLhGcPun2f .navbar-fixed-top {
  padding-top: 0;
}
.cid-tLhGcPun2f .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-tLhGcPun2f .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-tLhGcPun2f .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-tLhGcPun2f .navbar-buttons {
  flex-wrap: wrap;
}
.cid-tLhGcPun2f .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tLhGcPun2f .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tLhGcPun2f .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-tLhGcPun2f .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tLhGcPun2f .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tLhGcPun2f .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tLhGcPun2f .menu-content-top {
  background: #ffffff;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tLhGcPun2f .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tLhGcPun2f .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-tLhGcPun2f .dropdown-item,
.cid-tLhGcPun2f .nav-link,
.cid-tLhGcPun2f .brand-name {
  font-style: normal;
}
.cid-tLhGcPun2f .dropdown-item:hover,
.cid-tLhGcPun2f .nav-link:hover,
.cid-tLhGcPun2f .brand-name:hover {
  color: #363638 !important;
}
.cid-tLhGcPun2f .dropdown-menu {
  background-color: #ffffff;
}
.cid-tLhGcPun2f .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tLhGcPun2f .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-tLhGcPun2f .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tLhGcPun2f .nav-item {
  position: relative;
}
.cid-tLhGcPun2f .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tLhGcPun2f .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-tLhGcPun2f .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-tLhGcPun2f .nav-link {
    line-height: 6.13;
  }
  .cid-tLhGcPun2f .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #363638;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-tLhGcPun2f .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
  .cid-tLhGcPun2f .dropdown-item {
    color: #83868c !important;
    border-bottom: 0px solid #363638;
  }
}
.cid-tLhGcPun2f .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLhGcPun2f .content-text {
  margin-bottom: 0;
}
.cid-tLhGcPun2f .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tLhGcPun2f .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0089d2;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tLhGcPun2f .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tLhGcPun2f .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tLhGcPun2f .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-tLhGcPun2f .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLhGcPun2f .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tLhGcPun2f .content-right-side {
  text-align: center;
}
.cid-tLhGcPun2f .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tLhGcPun2f .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tLhGcPun2f .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #363638;
}
.cid-tLhGcPun2f .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-tLhGcPun2f .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tLhGcPun2f .info-widget:first-child {
  margin-left: 0;
}
.cid-tLhGcPun2f .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tLhGcPun2f .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-tLhGcPun2f .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-tLhGcPun2f .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #e1e3e6;
}
@media (min-width: 992px) {
  .cid-tLhGcPun2f .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-tLhGcPun2f .navbar {
    display: block;
    padding: 0;
  }
  .cid-tLhGcPun2f .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-tLhGcPun2f .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tLhGcPun2f .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tLhGcPun2f .navbar-toggler {
    display: none;
  }
  .cid-tLhGcPun2f .navbar-collapse {
    justify-content: center;
  }
}
.cid-tLhGcPun2f .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tLhGcPun2f .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-tLhGcPun2f .btn-sm {
  padding: 13px 29px;
}
.cid-tLhGcPun2f .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tLhGcPun2f .btn::after {
  background-color: #83868c;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tLhGcPun2f .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tLhGcPun2f .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tLhGcPun2f .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tLhGcPun2f .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-tLhGcPun2f .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tLhGcPun2f .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tLhGcPun2f .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tLhGcPun2f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLhGcPun2f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLhGcPun2f .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tLhGcPun2f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLhGcPun2f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLhGcPun2f .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tLhGcPun2f .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLhGcPun2f .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tLhGcPun2f .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-tLhGcPun2f .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tLhGcPun2f .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tLhGcPun2f .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tLhGcPun2f button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-tLhGcPun2f button.navbar-toggler:focus {
  outline: none;
}
.cid-tLhGcPun2f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0089d2;
}
.cid-tLhGcPun2f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLhGcPun2f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLhGcPun2f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLhGcPun2f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLhGcPun2f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLhGcPun2f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLhGcPun2f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLhGcPun2f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLhGcPun2f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLhGcPun2f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLhGcPun2f .collapsed .btn {
  display: flex;
}
.cid-tLhGcPun2f .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tLhGcPun2f .collapsed .navbar-collapse.collapsing,
.cid-tLhGcPun2f .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tLhGcPun2f .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tLhGcPun2f .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tLhGcPun2f .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tLhGcPun2f .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tLhGcPun2f .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tLhGcPun2f .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-tLhGcPun2f .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tLhGcPun2f .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tLhGcPun2f .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tLhGcPun2f .collapsed button.navbar-toggler {
  display: block;
}
.cid-tLhGcPun2f .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tLhGcPun2f .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-tLhGcPun2f .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tLhGcPun2f .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tLhGcPun2f .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tLhGcPun2f .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tLhGcPun2f .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tLhGcPun2f .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-tLhGcPun2f .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-tLhGcPun2f .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tLhGcPun2f .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-tLhGcPun2f .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-tLhGcPun2f .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-tLhGcPun2f .navbar-collapse.collapsing,
  .cid-tLhGcPun2f .navbar-collapse.show {
    display: block !important;
  }
  .cid-tLhGcPun2f .navbar-collapse.collapsing .navbar-nav,
  .cid-tLhGcPun2f .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tLhGcPun2f .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tLhGcPun2f .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tLhGcPun2f .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-tLhGcPun2f .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-tLhGcPun2f .navbar-collapse.collapsing .navbar-buttons,
  .cid-tLhGcPun2f .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tLhGcPun2f .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tLhGcPun2f .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tLhGcPun2f img {
    height: 3.8rem !important;
  }
  .cid-tLhGcPun2f .btn {
    display: flex;
  }
  .cid-tLhGcPun2f button.navbar-toggler {
    display: block;
  }
  .cid-tLhGcPun2f .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tLhGcPun2f .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-tLhGcPun2f .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tLhGcPun2f .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tLhGcPun2f .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tLhGcPun2f .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tLhGcPun2f .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tLhGcPun2f .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tLhGcPun2f .navbar-toggler {
  position: relative;
}
.cid-tLhGcPun2f .dropdown-item.active,
.cid-tLhGcPun2f .dropdown-item:active {
  color: initial;
}
.cid-tLhGcPun2f .widget-title {
  color: #83868c;
}
.cid-tLhGcPun2f .widget-text {
  color: #83868c;
}
.cid-tLhGcPun2f .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-tLhGcPun2f .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #0089d2;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-tLhGcPun2f .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-tLhGcPun2f .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #279e64;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-tLhGcPun2f .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-tLhGcPun2f .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-tLhGcPun2f .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-tLhGcPun2f .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-tLhGcPun2f .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-tLhGcPun2f .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-tLhGcPun2f .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-tLhGcPun2f .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-tLhGcPun2f .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-tLhGcPun2f .menu-content-top,
  .cid-tLhGcPun2f .menu-bottom {
    padding: 0 15px;
  }
  .cid-tLhGcPun2f button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-tLhGcQ4k85 .modal-body .close {
  background: #1b1b1b;
}
.cid-tLhGcQ4k85 .modal-body .close span {
  font-style: normal;
}
.cid-tLhGcQ4k85 .carousel-inner > .active,
.cid-tLhGcQ4k85 .carousel-inner > .next,
.cid-tLhGcQ4k85 .carousel-inner > .prev {
  display: table;
}
.cid-tLhGcQ4k85 .mbr-iconfont {
  font-family: 'Moririse2' !important;
}
.cid-tLhGcQ4k85 .mbri-right:before {
  content: "\e909";
  font-weight: 900;
  padding-left: 5px;
}
.cid-tLhGcQ4k85 .mbri-left:before {
  content: "\e90a";
  font-weight: 900;
  padding-right: 5px;
}
.cid-tLhGcQ4k85 .carousel-control,
.cid-tLhGcQ4k85 .carousel-indicators li {
  background-color: #0089d2 !important;
  opacity: 0.7!important;
  border: none;
}
.cid-tLhGcQ4k85 .carousel-control:hover,
.cid-tLhGcQ4k85 .carousel-indicators li:hover {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLhGcQ4k85 .carousel-control .active,
.cid-tLhGcQ4k85 .carousel-indicators li .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLhGcQ4k85 .carousel-indicators .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLhGcQ4k85 .carousel-control .icon-next,
.cid-tLhGcQ4k85 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tLhGcQ4k85 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tLhGcQ4k85 .col-10 {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-tLhGcQ4k85 .col-10 {
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .cid-tLhGcQ4k85 .carousel-control {
    width: 40px!important;
    height: 40px!important;
  }
  .cid-tLhGcQ4k85 .mbr-iconfont {
    font-size: 1rem!important;
  }
}
@media (max-width: 767px) {
  .cid-tLhGcQ4k85 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tLhGcQ4k85 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tLhGcQ4k85 .boxed-slider > div {
  position: relative;
}
.cid-tLhGcQ4k85 .container img {
  width: 100%;
}
.cid-tLhGcQ4k85 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tLhGcQ4k85 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tLhGcQ4k85 .mbr-table-cell {
  padding: 0;
}
.cid-tLhGcQ4k85 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tLhGcQ4k85 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-tLhGcQ4k85 .mbr-overlay {
  z-index: 1;
}
.cid-tLhGcQ4k85 .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
/* .cid-tLhGcQ4k85 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-tLhGcQ4k85 .carousel-item .container {
    width: 100%;
  }
}
.cid-tLhGcQ4k85 .carousel-item-next.carousel-item-left,
.cid-tLhGcQ4k85 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-tLhGcQ4k85 .active.carousel-item-right,
.cid-tLhGcQ4k85 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-tLhGcQ4k85 .active.carousel-item-left,
.cid-tLhGcQ4k85 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
} */
.cid-tLhGcQ4k85 .mbr-slider .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all .3s;
}
.cid-tLhGcQ4k85 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLhGcQ4k85 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLhGcQ4k85 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tLhGcQ4k85 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLhGcQ4k85 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLhGcQ4k85 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-tLhGcQ4k85 .mbr-slider .carousel-indicators li.active,
.cid-tLhGcQ4k85 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-tLhGcQ4k85 .mbr-slider .carousel-indicators li::after,
.cid-tLhGcQ4k85 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tLhGcQ4k85 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tLhGcQ4k85 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tLhGcQ4k85 .mbr-slider > .container img {
  width: 100%;
}
.cid-tLhGcQ4k85 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tLhGcQ4k85 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tLhGcQ4k85 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tLhGcQ4k85 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tLhGcQ4k85 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tLhGcQ4k85 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-tLhGcQ4k85 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tLhGcQ4k85 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-tLhGcQ4k85 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tLhGcQ4k85 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tLhGcQ4k85 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tLhGcQ4k85 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tLhGcQ4k85 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tLhGcQ4k85 H2 {
  text-align: center;
}
.cid-tLhGcQIDYs {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease-in-out;
}
.cid-tLhGcQIDYs:hover {
  background-color: #f9f9f9;
}
.cid-tLhGcQIDYs .mbr-section-title {
  margin: 0;
}
.cid-tLhGcQIDYs .card-wrapper {
  z-index: 3;
}
.cid-tLhGcQIDYs .full-link {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tLhGcQIDYs .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tLhGcQIDYs .mbr-section-title,
.cid-tLhGcQIDYs .text-block {
  color: #0089d2;
}
.cid-tQznDknHhG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tQznDknHhG .mbr-text,
.cid-tQznDknHhG .ornament {
  color: #363638;
}
.cid-tLhJCo5Ie9 {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #f9f9f9;
}
.cid-tLhJCo5Ie9 .card-header {
  background: transparent;
}
.cid-tLhJCo5Ie9 .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-tLhJCo5Ie9 .wrapper {
  background: #363638;
  padding: 5rem;
}
.cid-tLhJCo5Ie9 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tLhJCo5Ie9 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tLhJCo5Ie9 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tLhJCo5Ie9 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tLhJCo5Ie9 .card .card-header a.panel-title h5 .sign {
  padding-right: 1rem;
}
.cid-tLhJCo5Ie9 .card .panel-body {
  color: #767676;
  padding-top: 1rem;
}
.cid-tLhJCo5Ie9 h5 {
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0rem;
  border-bottom: 1px solid #ffffff;
  padding: 1rem 1rem;
}
@media (max-width: 992px) {
  .cid-tLhJCo5Ie9 .md-pb {
    margin-bottom: 2rem;
  }
  .cid-tLhJCo5Ie9 .wrapper {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLhJCo5Ie9 .wrapper {
    padding: 2rem 1rem;
  }
  .cid-tLhJCo5Ie9 h5 {
    padding: 1rem 0rem;
  }
}
.cid-tLhJCo5Ie9 .mbr-text,
.cid-tLhJCo5Ie9 .mbr-section-btn {
  color: #ffffff;
}
.cid-tLhJCo5Ie9 H3 {
  color: #ffffff;
}
.cid-tLhJCo5Ie9 H4 {
  color: #0089d2;
}
.cid-tLhJCo5Ie9 H5 {
  color: #ffffff;
}
.cid-tLhJCo5Ie9 .panel-text {
  color: #ffffff;
}
.cid-tLhGcRfsPp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0089d2;
}
@media (max-width: 767px) {
  .cid-tLhGcRfsPp .mbr-text {
    text-align: center;
  }
}
.cid-tLhGcRfsPp .container-fluid {
  padding: 0;
}
.cid-tLhGcRfsPp .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-tLhGcRfsPp img {
  height: 100%;
  object-fit: cover;
}
.cid-tLhGcRfsPp .mbr-figure {
  height: 100%;
}
.cid-tLhGcRfsPp .col-lg-7 {
  padding: 0;
}
.cid-tLhGcRfsPp .row {
  margin: 0;
}
.cid-tLhGcRfsPp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLhGcRfsPp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLhGcRfsPp .mbr-text,
.cid-tLhGcRfsPp .mbr-section-btn {
  color: #ffffff;
}
.cid-tLhGcRfsPp H1 {
  color: #ffffff;
}
.cid-tQzRD869q7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQzRD869q7 .mbr-section-title,
.cid-tQzRD869q7 .mbr-text {
  margin-bottom: 0;
}
.cid-tQzRD869q7 .title__block {
  margin-bottom: 45px;
}
.cid-tQzRD869q7 .mbr-text {
  color: #000000;
  letter-spacing: 0px;
}
.cid-tQzRD869q7 .mbr-section-title {
  margin-top: 15px;
  color: #0089d2;
}
.cid-tQzRD869q7 .card__block {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQzRD869q7 .card__block img {
  object-fit: cover;
  max-width: 70%;
  max-height: 70%;
}
.cid-tQzRPp0cpC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #363638;
}
.cid-tQzRPp0cpC .footer-item {
  padding: 30px;
}
.cid-tQzRPp0cpC .mbr-section-subtitle,
.cid-tQzRPp0cpC .address-text {
  margin-bottom: 1.5rem;
}
.cid-tQzRPp0cpC .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tQzRPp0cpC .social-row {
    padding-top: 1.5rem;
  }
}
.cid-tQzRPp0cpC .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQzRPp0cpC .row {
    text-align: center;
  }
  .cid-tQzRPp0cpC .social-row {
    justify-content: center;
  }
}
.cid-tQzRPp0cpC .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tQzRPp0cpC .footer-content {
    flex-wrap: wrap;
  }
}
.cid-tQzRPp0cpC .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-tQzRPp0cpC .mbr-text {
  color: #ffffff;
}
.cid-tQzRPp0cpC .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tQzRPp0cpC .list a {
  color: #ffffff;
}
.cid-tQzRPp0cpC .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-tQzRPp0cpC .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-tQzRPp0cpC .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-tQzRPp0cpC .mbr-iconfont {
  color: #ffffff;
}
.cid-tQzRPp0cpC .mbr-section-subtitle {
  color: #0089d2;
}
.cid-tQzRPp0cpC .address-text {
  color: #0089d2;
}
.cid-tLhGyUMS5Z .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tLhGyUMS5Z .navbar-fixed-top {
  padding-top: 0;
}
.cid-tLhGyUMS5Z .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-tLhGyUMS5Z .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-tLhGyUMS5Z .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-tLhGyUMS5Z .navbar-buttons {
  flex-wrap: wrap;
}
.cid-tLhGyUMS5Z .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tLhGyUMS5Z .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tLhGyUMS5Z .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-tLhGyUMS5Z .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tLhGyUMS5Z .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tLhGyUMS5Z .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tLhGyUMS5Z .menu-content-top {
  background: #ffffff;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tLhGyUMS5Z .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tLhGyUMS5Z .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-tLhGyUMS5Z .dropdown-item,
.cid-tLhGyUMS5Z .nav-link,
.cid-tLhGyUMS5Z .brand-name {
  font-style: normal;
}
.cid-tLhGyUMS5Z .dropdown-item:hover,
.cid-tLhGyUMS5Z .nav-link:hover,
.cid-tLhGyUMS5Z .brand-name:hover {
  color: #363638 !important;
}
.cid-tLhGyUMS5Z .dropdown-menu {
  background-color: #ffffff;
}
.cid-tLhGyUMS5Z .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tLhGyUMS5Z .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-tLhGyUMS5Z .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tLhGyUMS5Z .nav-item {
  position: relative;
}
.cid-tLhGyUMS5Z .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tLhGyUMS5Z .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-tLhGyUMS5Z .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-tLhGyUMS5Z .nav-link {
    line-height: 6.13;
  }
  .cid-tLhGyUMS5Z .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #363638;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-tLhGyUMS5Z .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
  .cid-tLhGyUMS5Z .dropdown-item {
    color: #83868c !important;
    border-bottom: 0px solid #363638;
  }
}
.cid-tLhGyUMS5Z .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLhGyUMS5Z .content-text {
  margin-bottom: 0;
}
.cid-tLhGyUMS5Z .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tLhGyUMS5Z .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0089d2;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tLhGyUMS5Z .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tLhGyUMS5Z .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tLhGyUMS5Z .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-tLhGyUMS5Z .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLhGyUMS5Z .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tLhGyUMS5Z .content-right-side {
  text-align: center;
}
.cid-tLhGyUMS5Z .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tLhGyUMS5Z .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tLhGyUMS5Z .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #363638;
}
.cid-tLhGyUMS5Z .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-tLhGyUMS5Z .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tLhGyUMS5Z .info-widget:first-child {
  margin-left: 0;
}
.cid-tLhGyUMS5Z .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tLhGyUMS5Z .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-tLhGyUMS5Z .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-tLhGyUMS5Z .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #e1e3e6;
}
@media (min-width: 992px) {
  .cid-tLhGyUMS5Z .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-tLhGyUMS5Z .navbar {
    display: block;
    padding: 0;
  }
  .cid-tLhGyUMS5Z .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-tLhGyUMS5Z .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tLhGyUMS5Z .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tLhGyUMS5Z .navbar-toggler {
    display: none;
  }
  .cid-tLhGyUMS5Z .navbar-collapse {
    justify-content: center;
  }
}
.cid-tLhGyUMS5Z .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tLhGyUMS5Z .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-tLhGyUMS5Z .btn-sm {
  padding: 13px 29px;
}
.cid-tLhGyUMS5Z .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tLhGyUMS5Z .btn::after {
  background-color: #83868c;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tLhGyUMS5Z .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tLhGyUMS5Z .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tLhGyUMS5Z .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tLhGyUMS5Z .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-tLhGyUMS5Z .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tLhGyUMS5Z .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tLhGyUMS5Z .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tLhGyUMS5Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLhGyUMS5Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLhGyUMS5Z .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tLhGyUMS5Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLhGyUMS5Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLhGyUMS5Z .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tLhGyUMS5Z .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLhGyUMS5Z .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tLhGyUMS5Z .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-tLhGyUMS5Z .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tLhGyUMS5Z .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tLhGyUMS5Z .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tLhGyUMS5Z button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-tLhGyUMS5Z button.navbar-toggler:focus {
  outline: none;
}
.cid-tLhGyUMS5Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0089d2;
}
.cid-tLhGyUMS5Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLhGyUMS5Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLhGyUMS5Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLhGyUMS5Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLhGyUMS5Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLhGyUMS5Z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLhGyUMS5Z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLhGyUMS5Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLhGyUMS5Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLhGyUMS5Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLhGyUMS5Z .collapsed .btn {
  display: flex;
}
.cid-tLhGyUMS5Z .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tLhGyUMS5Z .collapsed .navbar-collapse.collapsing,
.cid-tLhGyUMS5Z .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tLhGyUMS5Z .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tLhGyUMS5Z .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tLhGyUMS5Z .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tLhGyUMS5Z .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tLhGyUMS5Z .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tLhGyUMS5Z .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-tLhGyUMS5Z .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tLhGyUMS5Z .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tLhGyUMS5Z .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tLhGyUMS5Z .collapsed button.navbar-toggler {
  display: block;
}
.cid-tLhGyUMS5Z .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tLhGyUMS5Z .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-tLhGyUMS5Z .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tLhGyUMS5Z .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tLhGyUMS5Z .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tLhGyUMS5Z .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tLhGyUMS5Z .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tLhGyUMS5Z .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-tLhGyUMS5Z .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-tLhGyUMS5Z .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tLhGyUMS5Z .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-tLhGyUMS5Z .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-tLhGyUMS5Z .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-tLhGyUMS5Z .navbar-collapse.collapsing,
  .cid-tLhGyUMS5Z .navbar-collapse.show {
    display: block !important;
  }
  .cid-tLhGyUMS5Z .navbar-collapse.collapsing .navbar-nav,
  .cid-tLhGyUMS5Z .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tLhGyUMS5Z .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tLhGyUMS5Z .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tLhGyUMS5Z .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-tLhGyUMS5Z .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-tLhGyUMS5Z .navbar-collapse.collapsing .navbar-buttons,
  .cid-tLhGyUMS5Z .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tLhGyUMS5Z .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tLhGyUMS5Z .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tLhGyUMS5Z img {
    height: 3.8rem !important;
  }
  .cid-tLhGyUMS5Z .btn {
    display: flex;
  }
  .cid-tLhGyUMS5Z button.navbar-toggler {
    display: block;
  }
  .cid-tLhGyUMS5Z .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tLhGyUMS5Z .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-tLhGyUMS5Z .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tLhGyUMS5Z .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tLhGyUMS5Z .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tLhGyUMS5Z .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tLhGyUMS5Z .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tLhGyUMS5Z .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tLhGyUMS5Z .navbar-toggler {
  position: relative;
}
.cid-tLhGyUMS5Z .dropdown-item.active,
.cid-tLhGyUMS5Z .dropdown-item:active {
  color: initial;
}
.cid-tLhGyUMS5Z .widget-title {
  color: #83868c;
}
.cid-tLhGyUMS5Z .widget-text {
  color: #83868c;
}
.cid-tLhGyUMS5Z .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-tLhGyUMS5Z .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #0089d2;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-tLhGyUMS5Z .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-tLhGyUMS5Z .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #279e64;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-tLhGyUMS5Z .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-tLhGyUMS5Z .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-tLhGyUMS5Z .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-tLhGyUMS5Z .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-tLhGyUMS5Z .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-tLhGyUMS5Z .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-tLhGyUMS5Z .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-tLhGyUMS5Z .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-tLhGyUMS5Z .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-tLhGyUMS5Z .menu-content-top,
  .cid-tLhGyUMS5Z .menu-bottom {
    padding: 0 15px;
  }
  .cid-tLhGyUMS5Z button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-tLhGyVhpR4 .modal-body .close {
  background: #1b1b1b;
}
.cid-tLhGyVhpR4 .modal-body .close span {
  font-style: normal;
}
.cid-tLhGyVhpR4 .carousel-inner > .active,
.cid-tLhGyVhpR4 .carousel-inner > .next,
.cid-tLhGyVhpR4 .carousel-inner > .prev {
  display: table;
}
.cid-tLhGyVhpR4 .mbr-iconfont {
  font-family: 'Moririse2' !important;
}
.cid-tLhGyVhpR4 .mbri-right:before {
  content: "\e909";
  font-weight: 900;
  padding-left: 5px;
}
.cid-tLhGyVhpR4 .mbri-left:before {
  content: "\e90a";
  font-weight: 900;
  padding-right: 5px;
}
.cid-tLhGyVhpR4 .carousel-control,
.cid-tLhGyVhpR4 .carousel-indicators li {
  background-color: #0089d2 !important;
  opacity: 0.7!important;
  border: none;
}
.cid-tLhGyVhpR4 .carousel-control:hover,
.cid-tLhGyVhpR4 .carousel-indicators li:hover {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLhGyVhpR4 .carousel-control .active,
.cid-tLhGyVhpR4 .carousel-indicators li .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLhGyVhpR4 .carousel-indicators .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLhGyVhpR4 .carousel-control .icon-next,
.cid-tLhGyVhpR4 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tLhGyVhpR4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tLhGyVhpR4 .col-10 {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-tLhGyVhpR4 .col-10 {
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .cid-tLhGyVhpR4 .carousel-control {
    width: 40px!important;
    height: 40px!important;
  }
  .cid-tLhGyVhpR4 .mbr-iconfont {
    font-size: 1rem!important;
  }
}
@media (max-width: 767px) {
  .cid-tLhGyVhpR4 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tLhGyVhpR4 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tLhGyVhpR4 .boxed-slider > div {
  position: relative;
}
.cid-tLhGyVhpR4 .container img {
  width: 100%;
}
.cid-tLhGyVhpR4 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tLhGyVhpR4 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tLhGyVhpR4 .mbr-table-cell {
  padding: 0;
}
.cid-tLhGyVhpR4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tLhGyVhpR4 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-tLhGyVhpR4 .mbr-overlay {
  z-index: 1;
}
.cid-tLhGyVhpR4 .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
/* .cid-tLhGyVhpR4 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-tLhGyVhpR4 .carousel-item .container {
    width: 100%;
  }
}
.cid-tLhGyVhpR4 .carousel-item-next.carousel-item-left,
.cid-tLhGyVhpR4 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-tLhGyVhpR4 .active.carousel-item-right,
.cid-tLhGyVhpR4 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-tLhGyVhpR4 .active.carousel-item-left,
.cid-tLhGyVhpR4 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
} */
.cid-tLhGyVhpR4 .mbr-slider .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all .3s;
}
.cid-tLhGyVhpR4 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLhGyVhpR4 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLhGyVhpR4 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tLhGyVhpR4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLhGyVhpR4 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLhGyVhpR4 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-tLhGyVhpR4 .mbr-slider .carousel-indicators li.active,
.cid-tLhGyVhpR4 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-tLhGyVhpR4 .mbr-slider .carousel-indicators li::after,
.cid-tLhGyVhpR4 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tLhGyVhpR4 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tLhGyVhpR4 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tLhGyVhpR4 .mbr-slider > .container img {
  width: 100%;
}
.cid-tLhGyVhpR4 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tLhGyVhpR4 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tLhGyVhpR4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tLhGyVhpR4 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tLhGyVhpR4 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tLhGyVhpR4 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-tLhGyVhpR4 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tLhGyVhpR4 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-tLhGyVhpR4 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tLhGyVhpR4 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tLhGyVhpR4 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tLhGyVhpR4 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tLhGyVhpR4 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tLhGyVhpR4 H2 {
  text-align: center;
}
.cid-tLhGyVQtEN {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease-in-out;
}
.cid-tLhGyVQtEN:hover {
  background-color: #f9f9f9;
}
.cid-tLhGyVQtEN .mbr-section-title {
  margin: 0;
}
.cid-tLhGyVQtEN .card-wrapper {
  z-index: 3;
}
.cid-tLhGyVQtEN .full-link {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tLhGyVQtEN .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tLhGyVQtEN .mbr-section-title,
.cid-tLhGyVQtEN .text-block {
  color: #0089d2;
}
.cid-tLhGyVZfSg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tLhGyVZfSg .mbr-text,
.cid-tLhGyVZfSg .ornament {
  color: #363638;
}
.cid-tQAHEEwAhb {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9f9f9;
}
.cid-tQAHEEwAhb H1 {
  color: #000000;
}
.cid-tQAHEEwAhb .mbr-text,
.cid-tQAHEEwAhb .mbr-section-btn {
  color: #000000;
}
.cid-tQAHEEwAhb .mbr-subtitle {
  color: #000000;
}
.cid-tQAHEEwAhb .mbr-text {
  margin-top: 1.5rem;
}
.cid-tQAHEEwAhb .mbr-section-btn {
  margin-top: 2rem;
}
.cid-tQAHEEwAhb .mbr-section-title,
.cid-tQAHEEwAhb .mbr-section-btn {
  color: #165788;
}
.cid-tLiozmPGAL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #0089d2;
  transition: background-color 0.3s ease-in-out;
}
.cid-tLiozmPGAL:hover {
  background-color: #0089d2;
}
.cid-tLiozmPGAL .mbr-section-title {
  margin: 0;
}
.cid-tLiozmPGAL .card-wrapper {
  z-index: 3;
}
.cid-tLiozmPGAL .full-link {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tLiozmPGAL .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tLiozmPGAL .mbr-section-title,
.cid-tLiozmPGAL .text-block {
  color: #ffffff;
  text-align: center;
}
.cid-tLijBxotmD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0089d2;
}
.cid-tLijBxotmD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLijBxotmD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tLijBxotmD .container {
    padding: 0 20px;
  }
  .cid-tLijBxotmD .container .row {
    padding: 0;
  }
}
.cid-tLijBxotmD .row {
  justify-content: center;
}
.cid-tLijBxotmD .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tLijBxotmD .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tLijBxotmD .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tLijBxotmD .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tLijBxotmD .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tLijBxotmD .mbr-desc {
  color: #e8e8e8;
}
.cid-tLijBxotmD .mbr-name {
  color: #ffffff;
  text-align: left;
}
.cid-tQAuw6wCKN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0089d2;
}
.cid-tQAuw6wCKN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAuw6wCKN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAuw6wCKN .container {
    padding: 0 20px;
  }
  .cid-tQAuw6wCKN .container .row {
    padding: 0;
  }
}
.cid-tQAuw6wCKN .row {
  justify-content: center;
}
.cid-tQAuw6wCKN .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAuw6wCKN .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAuw6wCKN .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAuw6wCKN .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAuw6wCKN .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAuw6wCKN .mbr-desc {
  color: #f9f9f9;
}
.cid-tQAuw6wCKN .mbr-name {
  color: #f9f9f9;
  text-align: center;
}
.cid-tQAvRBvTk0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0089d2;
}
.cid-tQAvRBvTk0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAvRBvTk0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAvRBvTk0 .container {
    padding: 0 20px;
  }
  .cid-tQAvRBvTk0 .container .row {
    padding: 0;
  }
}
.cid-tQAvRBvTk0 .row {
  justify-content: center;
}
.cid-tQAvRBvTk0 .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAvRBvTk0 .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAvRBvTk0 .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAvRBvTk0 .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAvRBvTk0 .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAvRBvTk0 .mbr-desc {
  color: #f9f9f9;
}
.cid-tQAvRBvTk0 .mbr-name {
  color: #f9f9f9;
  text-align: center;
}
.cid-tQAwGrB84y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0089d2;
}
.cid-tQAwGrB84y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAwGrB84y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAwGrB84y .container {
    padding: 0 20px;
  }
  .cid-tQAwGrB84y .container .row {
    padding: 0;
  }
}
.cid-tQAwGrB84y .row {
  justify-content: center;
}
.cid-tQAwGrB84y .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAwGrB84y .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAwGrB84y .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAwGrB84y .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAwGrB84y .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAwGrB84y .mbr-desc {
  color: #f9f9f9;
}
.cid-tQAwGrB84y .mbr-name {
  color: #f9f9f9;
  text-align: center;
}
.cid-tQAxxt7mlL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0089d2;
}
.cid-tQAxxt7mlL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAxxt7mlL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAxxt7mlL .container {
    padding: 0 20px;
  }
  .cid-tQAxxt7mlL .container .row {
    padding: 0;
  }
}
.cid-tQAxxt7mlL .row {
  justify-content: center;
}
.cid-tQAxxt7mlL .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAxxt7mlL .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAxxt7mlL .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAxxt7mlL .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAxxt7mlL .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAxxt7mlL .mbr-desc {
  color: #f9f9f9;
}
.cid-tQAxxt7mlL .mbr-name {
  color: #f9f9f9;
  text-align: center;
}
.cid-tQAy1eDOHt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0089d2;
}
.cid-tQAy1eDOHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAy1eDOHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAy1eDOHt .container {
    padding: 0 20px;
  }
  .cid-tQAy1eDOHt .container .row {
    padding: 0;
  }
}
.cid-tQAy1eDOHt .row {
  justify-content: center;
}
.cid-tQAy1eDOHt .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAy1eDOHt .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAy1eDOHt .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAy1eDOHt .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAy1eDOHt .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAy1eDOHt .mbr-desc {
  color: #f9f9f9;
}
.cid-tQAy1eDOHt .mbr-name {
  color: #f9f9f9;
  text-align: center;
}
.cid-tQAz0pb2PK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0089d2;
}
.cid-tQAz0pb2PK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAz0pb2PK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAz0pb2PK .container {
    padding: 0 20px;
  }
  .cid-tQAz0pb2PK .container .row {
    padding: 0;
  }
}
.cid-tQAz0pb2PK .row {
  justify-content: center;
}
.cid-tQAz0pb2PK .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAz0pb2PK .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAz0pb2PK .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAz0pb2PK .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAz0pb2PK .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAz0pb2PK .mbr-desc {
  color: #f9f9f9;
}
.cid-tQAz0pb2PK .mbr-name {
  color: #f9f9f9;
  text-align: center;
}
.cid-tQAzFNPqvg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0089d2;
}
.cid-tQAzFNPqvg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAzFNPqvg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAzFNPqvg .container {
    padding: 0 20px;
  }
  .cid-tQAzFNPqvg .container .row {
    padding: 0;
  }
}
.cid-tQAzFNPqvg .row {
  justify-content: center;
}
.cid-tQAzFNPqvg .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAzFNPqvg .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAzFNPqvg .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAzFNPqvg .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAzFNPqvg .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAzFNPqvg .mbr-desc {
  color: #f9f9f9;
}
.cid-tQAzFNPqvg .mbr-name {
  color: #f9f9f9;
  text-align: center;
}
.cid-tQAAmNZ4D9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0089d2;
}
.cid-tQAAmNZ4D9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAAmNZ4D9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAAmNZ4D9 .container {
    padding: 0 20px;
  }
  .cid-tQAAmNZ4D9 .container .row {
    padding: 0;
  }
}
.cid-tQAAmNZ4D9 .row {
  justify-content: center;
}
.cid-tQAAmNZ4D9 .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAAmNZ4D9 .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAAmNZ4D9 .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAAmNZ4D9 .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAAmNZ4D9 .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAAmNZ4D9 .mbr-desc {
  color: #f9f9f9;
}
.cid-tQAAmNZ4D9 .mbr-name {
  color: #f9f9f9;
  text-align: center;
}
.cid-tQAAKzOUcG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0089d2;
}
.cid-tQAAKzOUcG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAAKzOUcG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAAKzOUcG .container {
    padding: 0 20px;
  }
  .cid-tQAAKzOUcG .container .row {
    padding: 0;
  }
}
.cid-tQAAKzOUcG .row {
  justify-content: center;
}
.cid-tQAAKzOUcG .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAAKzOUcG .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAAKzOUcG .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAAKzOUcG .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAAKzOUcG .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAAKzOUcG .mbr-desc {
  color: #f9f9f9;
}
.cid-tQAAKzOUcG .mbr-name {
  color: #f9f9f9;
  text-align: center;
}
.cid-tQABi9566E {
  padding-top: 0rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #0089d2;
}
.cid-tQABi9566E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQABi9566E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQABi9566E .container {
    padding: 0 20px;
  }
  .cid-tQABi9566E .container .row {
    padding: 0;
  }
}
.cid-tQABi9566E .row {
  justify-content: center;
}
.cid-tQABi9566E .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQABi9566E .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQABi9566E .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQABi9566E .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQABi9566E .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQABi9566E .mbr-desc {
  color: #f9f9f9;
}
.cid-tQABi9566E .mbr-name {
  color: #f9f9f9;
  text-align: center;
}
.cid-tQABWQMKsk {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #363638;
  transition: background-color 0.3s ease-in-out;
}
.cid-tQABWQMKsk:hover {
  background-color: #363638;
}
.cid-tQABWQMKsk .mbr-section-title {
  margin: 0;
}
.cid-tQABWQMKsk .card-wrapper {
  z-index: 3;
}
.cid-tQABWQMKsk .full-link {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tQABWQMKsk .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tQABWQMKsk .mbr-section-title,
.cid-tQABWQMKsk .text-block {
  color: #ffffff;
  text-align: center;
}
.cid-tQACgi9DdO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #363638;
}
.cid-tQACgi9DdO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQACgi9DdO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQACgi9DdO .container {
    padding: 0 20px;
  }
  .cid-tQACgi9DdO .container .row {
    padding: 0;
  }
}
.cid-tQACgi9DdO .row {
  justify-content: center;
}
.cid-tQACgi9DdO .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #f9f9f9;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQACgi9DdO .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQACgi9DdO .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQACgi9DdO .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQACgi9DdO .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQACgi9DdO .mbr-desc {
  color: #ffffff;
}
.cid-tQACgi9DdO .mbr-name {
  color: #ffffff;
  text-align: center;
}
.cid-tQACuu0qcI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #363638;
}
.cid-tQACuu0qcI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQACuu0qcI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQACuu0qcI .container {
    padding: 0 20px;
  }
  .cid-tQACuu0qcI .container .row {
    padding: 0;
  }
}
.cid-tQACuu0qcI .row {
  justify-content: center;
}
.cid-tQACuu0qcI .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQACuu0qcI .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQACuu0qcI .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQACuu0qcI .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQACuu0qcI .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQACuu0qcI .mbr-desc {
  color: #ffffff;
}
.cid-tQACuu0qcI .mbr-name {
  color: #ffffff;
  text-align: center;
}
.cid-tQADAnU29t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #363638;
}
.cid-tQADAnU29t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQADAnU29t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQADAnU29t .container {
    padding: 0 20px;
  }
  .cid-tQADAnU29t .container .row {
    padding: 0;
  }
}
.cid-tQADAnU29t .row {
  justify-content: center;
}
.cid-tQADAnU29t .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQADAnU29t .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQADAnU29t .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQADAnU29t .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQADAnU29t .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQADAnU29t .mbr-desc {
  color: #ffffff;
}
.cid-tQADAnU29t .mbr-name {
  color: #ffffff;
  text-align: center;
}
.cid-tQAE8w6he0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #363638;
}
.cid-tQAE8w6he0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAE8w6he0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAE8w6he0 .container {
    padding: 0 20px;
  }
  .cid-tQAE8w6he0 .container .row {
    padding: 0;
  }
}
.cid-tQAE8w6he0 .row {
  justify-content: center;
}
.cid-tQAE8w6he0 .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAE8w6he0 .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAE8w6he0 .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAE8w6he0 .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAE8w6he0 .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAE8w6he0 .mbr-desc {
  color: #ffffff;
}
.cid-tQAE8w6he0 .mbr-name {
  color: #ffffff;
  text-align: center;
}
.cid-tQAE9kl39E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #363638;
}
.cid-tQAE9kl39E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAE9kl39E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAE9kl39E .container {
    padding: 0 20px;
  }
  .cid-tQAE9kl39E .container .row {
    padding: 0;
  }
}
.cid-tQAE9kl39E .row {
  justify-content: center;
}
.cid-tQAE9kl39E .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAE9kl39E .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAE9kl39E .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAE9kl39E .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAE9kl39E .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAE9kl39E .mbr-desc {
  color: #ffffff;
}
.cid-tQAE9kl39E .mbr-name {
  color: #ffffff;
  text-align: center;
}
.cid-tQAENEx3yF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #363638;
}
.cid-tQAENEx3yF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAENEx3yF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAENEx3yF .container {
    padding: 0 20px;
  }
  .cid-tQAENEx3yF .container .row {
    padding: 0;
  }
}
.cid-tQAENEx3yF .row {
  justify-content: center;
}
.cid-tQAENEx3yF .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAENEx3yF .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAENEx3yF .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAENEx3yF .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAENEx3yF .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAENEx3yF .mbr-desc {
  color: #ffffff;
}
.cid-tQAENEx3yF .mbr-name {
  color: #ffffff;
  text-align: center;
}
.cid-tQAEOjFCGT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #363638;
}
.cid-tQAEOjFCGT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAEOjFCGT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAEOjFCGT .container {
    padding: 0 20px;
  }
  .cid-tQAEOjFCGT .container .row {
    padding: 0;
  }
}
.cid-tQAEOjFCGT .row {
  justify-content: center;
}
.cid-tQAEOjFCGT .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAEOjFCGT .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAEOjFCGT .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAEOjFCGT .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAEOjFCGT .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAEOjFCGT .mbr-desc {
  color: #ffffff;
}
.cid-tQAEOjFCGT .mbr-name {
  color: #ffffff;
  text-align: center;
}
.cid-tQAFyOjNZn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #363638;
}
.cid-tQAFyOjNZn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAFyOjNZn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAFyOjNZn .container {
    padding: 0 20px;
  }
  .cid-tQAFyOjNZn .container .row {
    padding: 0;
  }
}
.cid-tQAFyOjNZn .row {
  justify-content: center;
}
.cid-tQAFyOjNZn .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAFyOjNZn .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAFyOjNZn .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAFyOjNZn .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAFyOjNZn .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAFyOjNZn .mbr-desc {
  color: #ffffff;
}
.cid-tQAFyOjNZn .mbr-name {
  color: #ffffff;
  text-align: center;
}
.cid-tQAFARfbjM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #363638;
}
.cid-tQAFARfbjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAFARfbjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAFARfbjM .container {
    padding: 0 20px;
  }
  .cid-tQAFARfbjM .container .row {
    padding: 0;
  }
}
.cid-tQAFARfbjM .row {
  justify-content: center;
}
.cid-tQAFARfbjM .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAFARfbjM .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAFARfbjM .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAFARfbjM .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAFARfbjM .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAFARfbjM .mbr-desc {
  color: #ffffff;
}
.cid-tQAFARfbjM .mbr-name {
  color: #ffffff;
  text-align: center;
}
.cid-tQAGmINVVW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #363638;
}
.cid-tQAGmINVVW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAGmINVVW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAGmINVVW .container {
    padding: 0 20px;
  }
  .cid-tQAGmINVVW .container .row {
    padding: 0;
  }
}
.cid-tQAGmINVVW .row {
  justify-content: center;
}
.cid-tQAGmINVVW .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAGmINVVW .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAGmINVVW .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAGmINVVW .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAGmINVVW .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAGmINVVW .mbr-desc {
  color: #ffffff;
}
.cid-tQAGmINVVW .mbr-name {
  color: #ffffff;
  text-align: center;
}
.cid-tQAGneFpFq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #363638;
}
.cid-tQAGneFpFq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQAGneFpFq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQAGneFpFq .container {
    padding: 0 20px;
  }
  .cid-tQAGneFpFq .container .row {
    padding: 0;
  }
}
.cid-tQAGneFpFq .row {
  justify-content: center;
}
.cid-tQAGneFpFq .list-wrapper .card-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .cid-tQAGneFpFq .list-wrapper .card-wrapper {
    display: block;
  }
}
.cid-tQAGneFpFq .list-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tQAGneFpFq .list-wrapper .card-wrapper .mbr-desc {
    margin-bottom: 10px;
  }
}
.cid-tQAGneFpFq .list-wrapper .card-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tQAGneFpFq .mbr-desc {
  color: #ffffff;
}
.cid-tQAGneFpFq .mbr-name {
  color: #ffffff;
  text-align: center;
}
.cid-tRIz53I1u7 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-tRIz53I1u7 .container.main,
.cid-tRIz53I1u7 .container-fluid.main {
  padding-left: 30px;
  padding-right: 30px;
}
.cid-tRIz53I1u7 .container .mbr-section-subtitle,
.cid-tRIz53I1u7 .container-fluid .mbr-section-subtitle {
  color: #363638;
  margin-bottom: 10px;
}
.cid-tRIz53I1u7 .container .mbr-section-title,
.cid-tRIz53I1u7 .container-fluid .mbr-section-title {
  margin-bottom: 20px;
  color: #0089d2;
}
.cid-tRIz53I1u7 .container .mbr-text,
.cid-tRIz53I1u7 .container-fluid .mbr-text {
  color: #83868c;
}
.cid-tRIz53I1u7 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0rem;
}
.cid-tRIz53I1u7 .carousel-item > div {
  width: 100%;
}
.cid-tRIz53I1u7 .carousel-item.active,
.cid-tRIz53I1u7 .carousel-item-next,
.cid-tRIz53I1u7 .carousel-item-prev {
  display: flex;
}
.cid-tRIz53I1u7 .carousel-indicators {
  left: 0%;
  margin: 20px auto 0;
  align-items: center;
  bottom: -60px !important;
}
.cid-tRIz53I1u7 .carousel-indicators .active {
  border: 3px solid #ffffff;
  background-color: #ffffff !important;
}
.cid-tRIz53I1u7 .carousel-indicators li {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  transition: border 0.5s;
  background-color: #ffffff;
  font-size: 2rem;
  opacity: 1;
  border-width: 0px;
  margin: 6px;
}
.cid-tRIz53I1u7 .carousel-indicators li:hover {
  opacity: 1;
}
/* @media (max-width: 991px) {
  .cid-tRIz53I1u7 .carousel-controls {
    display: none;
  }
} */
.cid-tRIz53I1u7 .carousel-controls .carousel-control-prev,
.cid-tRIz53I1u7 .carousel-controls .carousel-control-next {
  opacity: 1;
}
.cid-tRIz53I1u7 .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 15px;
}
.cid-tRIz53I1u7 .carousel-controls a span {
  padding: 16.5px;
  border-radius: 50%;
  color: #0089d2;
  background: #ffffff;
  font-weight: bold;
  box-shadow: 0 10px 30px 0 #e7eaf2;
}
.cid-tRIz53I1u7 .carousel-controls a:hover span {
  opacity: 1;
}
.cid-tRIz53I1u7 .card {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 40px 40px 30px;
  position: relative;
}
.cid-tRIz53I1u7 .card .client-content {
  display: block;
}
.cid-tRIz53I1u7 .card .client-content .service-icon {
  text-align: left;
  position: relative;
  display: block;
}
.cid-tRIz53I1u7 .card .client-content .service-icon .front {
  color: #0089d2;
  font-size: 3.1875rem;
  position: relative;
  margin-bottom: 22px;
}
.cid-tRIz53I1u7 .card .client-content .service-icon:after {
  opacity: 0.5;
  width: 76px;
  height: 76px;
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  margin-left: -13%;
  border-radius: 50%;
  z-index: 0;
}
.cid-tRIz53I1u7 .card .client-content .card-text {
  margin-bottom: 25px;
  color: #83868c;
}
.cid-tRIz53I1u7 .card .client-info {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 30px;
}
.cid-tRIz53I1u7 .card .client-info::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -40px;
  right: -40px;
  height: 1px;
  background-color: #f9f9f9;
}
.cid-tRIz53I1u7 .card .client-info .client-image {
  margin-right: 20px;
  flex: none;
  display: block;
}
.cid-tRIz53I1u7 .card .client-info .client-image img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
  display: block;
  max-width: 100%;
}
.cid-tRIz53I1u7 .card .client-info .name-job .signature {
  margin-bottom: 0;
  color: #0089d2;
}
.cid-tRIz53I1u7 .card .client-info .name-job .profession {
  color: #83868c;
}
@media (min-width: 768px) {
  .cid-tRIz53I1u7 .carousel-controls a {
    width: 5%;
  }
  .cid-tRIz53I1u7 .client-info {
    flex-direction: column;
    justify-content: center;
  }
  .cid-tRIz53I1u7 .client-info .client-image {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .cid-tRIz53I1u7 * {
    text-align: center;
  }
}
.cid-tRIz53I1u7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRIz53I1u7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRIz53I1u7 .container .mbr-section-subtitle {
  color: #363638;
}
.cid-tRIz53I1u7 .card .client-content .card-text,
.cid-tRIz53I1u7 .mbr-section-btn {
  color: #363638;
}
.cid-tRIz53I1u7 .card .client-info .name-job .profession,
.cid-tRIz53I1u7 .mbr-section-btn {
  color: #363638;
}
.cid-tQzUMWaWms {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQzUMWaWms .mbr-section-title,
.cid-tQzUMWaWms .mbr-text {
  margin-bottom: 0;
}
.cid-tQzUMWaWms .title__block {
  margin-bottom: 45px;
}
.cid-tQzUMWaWms .mbr-text {
  color: #000000;
  letter-spacing: 0px;
}
.cid-tQzUMWaWms .mbr-section-title {
  margin-top: 15px;
  color: #0089d2;
}
.cid-tQzUMWaWms .card__block {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQzUMWaWms .card__block img {
  object-fit: cover;
  max-width: 70%;
  max-height: 70%;
}
.cid-tQzRPp0cpC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #363638;
}
.cid-tQzRPp0cpC .footer-item {
  padding: 30px;
}
.cid-tQzRPp0cpC .mbr-section-subtitle,
.cid-tQzRPp0cpC .address-text {
  margin-bottom: 1.5rem;
}
.cid-tQzRPp0cpC .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tQzRPp0cpC .social-row {
    padding-top: 1.5rem;
  }
}
.cid-tQzRPp0cpC .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQzRPp0cpC .row {
    text-align: center;
  }
  .cid-tQzRPp0cpC .social-row {
    justify-content: center;
  }
}
.cid-tQzRPp0cpC .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tQzRPp0cpC .footer-content {
    flex-wrap: wrap;
  }
}
.cid-tQzRPp0cpC .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-tQzRPp0cpC .mbr-text {
  color: #ffffff;
}
.cid-tQzRPp0cpC .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tQzRPp0cpC .list a {
  color: #ffffff;
}
.cid-tQzRPp0cpC .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-tQzRPp0cpC .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-tQzRPp0cpC .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-tQzRPp0cpC .mbr-iconfont {
  color: #ffffff;
}
.cid-tQzRPp0cpC .mbr-section-subtitle {
  color: #0089d2;
}
.cid-tQzRPp0cpC .address-text {
  color: #0089d2;
}
.cid-tLhGRiSmdl .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tLhGRiSmdl .navbar-fixed-top {
  padding-top: 0;
}
.cid-tLhGRiSmdl .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-tLhGRiSmdl .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-tLhGRiSmdl .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-tLhGRiSmdl .navbar-buttons {
  flex-wrap: wrap;
}
.cid-tLhGRiSmdl .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tLhGRiSmdl .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tLhGRiSmdl .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-tLhGRiSmdl .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tLhGRiSmdl .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tLhGRiSmdl .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tLhGRiSmdl .menu-content-top {
  background: #ffffff;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tLhGRiSmdl .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tLhGRiSmdl .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-tLhGRiSmdl .dropdown-item,
.cid-tLhGRiSmdl .nav-link,
.cid-tLhGRiSmdl .brand-name {
  font-style: normal;
}
.cid-tLhGRiSmdl .dropdown-item:hover,
.cid-tLhGRiSmdl .nav-link:hover,
.cid-tLhGRiSmdl .brand-name:hover {
  color: #363638 !important;
}
.cid-tLhGRiSmdl .dropdown-menu {
  background-color: #ffffff;
}
.cid-tLhGRiSmdl .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tLhGRiSmdl .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-tLhGRiSmdl .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tLhGRiSmdl .nav-item {
  position: relative;
}
.cid-tLhGRiSmdl .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tLhGRiSmdl .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-tLhGRiSmdl .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-tLhGRiSmdl .nav-link {
    line-height: 6.13;
  }
  .cid-tLhGRiSmdl .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #363638;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-tLhGRiSmdl .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
  .cid-tLhGRiSmdl .dropdown-item {
    color: #83868c !important;
    border-bottom: 0px solid #363638;
  }
}
.cid-tLhGRiSmdl .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLhGRiSmdl .content-text {
  margin-bottom: 0;
}
.cid-tLhGRiSmdl .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tLhGRiSmdl .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0089d2;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tLhGRiSmdl .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tLhGRiSmdl .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tLhGRiSmdl .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-tLhGRiSmdl .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLhGRiSmdl .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tLhGRiSmdl .content-right-side {
  text-align: center;
}
.cid-tLhGRiSmdl .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tLhGRiSmdl .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tLhGRiSmdl .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #363638;
}
.cid-tLhGRiSmdl .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-tLhGRiSmdl .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tLhGRiSmdl .info-widget:first-child {
  margin-left: 0;
}
.cid-tLhGRiSmdl .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tLhGRiSmdl .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-tLhGRiSmdl .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-tLhGRiSmdl .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #e1e3e6;
}
@media (min-width: 992px) {
  .cid-tLhGRiSmdl .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-tLhGRiSmdl .navbar {
    display: block;
    padding: 0;
  }
  .cid-tLhGRiSmdl .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-tLhGRiSmdl .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tLhGRiSmdl .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tLhGRiSmdl .navbar-toggler {
    display: none;
  }
  .cid-tLhGRiSmdl .navbar-collapse {
    justify-content: center;
  }
}
.cid-tLhGRiSmdl .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tLhGRiSmdl .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-tLhGRiSmdl .btn-sm {
  padding: 13px 29px;
}
.cid-tLhGRiSmdl .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tLhGRiSmdl .btn::after {
  background-color: #83868c;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tLhGRiSmdl .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tLhGRiSmdl .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tLhGRiSmdl .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tLhGRiSmdl .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-tLhGRiSmdl .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tLhGRiSmdl .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tLhGRiSmdl .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tLhGRiSmdl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLhGRiSmdl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLhGRiSmdl .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tLhGRiSmdl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLhGRiSmdl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLhGRiSmdl .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tLhGRiSmdl .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLhGRiSmdl .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tLhGRiSmdl .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-tLhGRiSmdl .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tLhGRiSmdl .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tLhGRiSmdl .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tLhGRiSmdl button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-tLhGRiSmdl button.navbar-toggler:focus {
  outline: none;
}
.cid-tLhGRiSmdl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0089d2;
}
.cid-tLhGRiSmdl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLhGRiSmdl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLhGRiSmdl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLhGRiSmdl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLhGRiSmdl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLhGRiSmdl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLhGRiSmdl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLhGRiSmdl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLhGRiSmdl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLhGRiSmdl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLhGRiSmdl .collapsed .btn {
  display: flex;
}
.cid-tLhGRiSmdl .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tLhGRiSmdl .collapsed .navbar-collapse.collapsing,
.cid-tLhGRiSmdl .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tLhGRiSmdl .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tLhGRiSmdl .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tLhGRiSmdl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tLhGRiSmdl .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tLhGRiSmdl .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tLhGRiSmdl .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-tLhGRiSmdl .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tLhGRiSmdl .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tLhGRiSmdl .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tLhGRiSmdl .collapsed button.navbar-toggler {
  display: block;
}
.cid-tLhGRiSmdl .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tLhGRiSmdl .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-tLhGRiSmdl .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tLhGRiSmdl .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tLhGRiSmdl .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tLhGRiSmdl .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tLhGRiSmdl .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tLhGRiSmdl .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-tLhGRiSmdl .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-tLhGRiSmdl .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tLhGRiSmdl .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-tLhGRiSmdl .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-tLhGRiSmdl .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-tLhGRiSmdl .navbar-collapse.collapsing,
  .cid-tLhGRiSmdl .navbar-collapse.show {
    display: block !important;
  }
  .cid-tLhGRiSmdl .navbar-collapse.collapsing .navbar-nav,
  .cid-tLhGRiSmdl .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tLhGRiSmdl .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tLhGRiSmdl .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tLhGRiSmdl .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-tLhGRiSmdl .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-tLhGRiSmdl .navbar-collapse.collapsing .navbar-buttons,
  .cid-tLhGRiSmdl .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tLhGRiSmdl .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tLhGRiSmdl .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tLhGRiSmdl img {
    height: 3.8rem !important;
  }
  .cid-tLhGRiSmdl .btn {
    display: flex;
  }
  .cid-tLhGRiSmdl button.navbar-toggler {
    display: block;
  }
  .cid-tLhGRiSmdl .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tLhGRiSmdl .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-tLhGRiSmdl .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tLhGRiSmdl .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tLhGRiSmdl .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tLhGRiSmdl .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tLhGRiSmdl .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tLhGRiSmdl .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tLhGRiSmdl .navbar-toggler {
  position: relative;
}
.cid-tLhGRiSmdl .dropdown-item.active,
.cid-tLhGRiSmdl .dropdown-item:active {
  color: initial;
}
.cid-tLhGRiSmdl .widget-title {
  color: #83868c;
}
.cid-tLhGRiSmdl .widget-text {
  color: #83868c;
}
.cid-tLhGRiSmdl .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-tLhGRiSmdl .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #0089d2;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-tLhGRiSmdl .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-tLhGRiSmdl .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #279e64;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-tLhGRiSmdl .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-tLhGRiSmdl .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-tLhGRiSmdl .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-tLhGRiSmdl .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-tLhGRiSmdl .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-tLhGRiSmdl .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-tLhGRiSmdl .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-tLhGRiSmdl .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-tLhGRiSmdl .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-tLhGRiSmdl .menu-content-top,
  .cid-tLhGRiSmdl .menu-bottom {
    padding: 0 15px;
  }
  .cid-tLhGRiSmdl button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-tLhGRjTZxo {
  padding-top: 180px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease-in-out;
}
.cid-tLhGRjTZxo:hover {
  background-color: #f9f9f9;
}
.cid-tLhGRjTZxo .mbr-section-title {
  margin: 0;
}
.cid-tLhGRjTZxo .card-wrapper {
  z-index: 3;
}
.cid-tLhGRjTZxo .full-link {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tLhGRjTZxo .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tLhGRjTZxo .mbr-section-title,
.cid-tLhGRjTZxo .text-block {
  color: #0089d2;
}
.cid-tLhGRk3pKX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f9f9f9;
}
.cid-tLhGRk3pKX .mbr-text,
.cid-tLhGRk3pKX .ornament {
  color: #363638;
}
.cid-tLitV08B9u {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tLitV08B9u .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLitV08B9u .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLitV08B9u .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLitV08B9u .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLitV08B9u .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0089d2;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tLitV08B9u .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tLitV08B9u .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tLitV08B9u .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tLitV08B9u .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #0089d2 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tQzSyga0mJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQzSyga0mJ .mbr-section-title,
.cid-tQzSyga0mJ .mbr-text {
  margin-bottom: 0;
}
.cid-tQzSyga0mJ .title__block {
  margin-bottom: 45px;
}
.cid-tQzSyga0mJ .mbr-text {
  color: #000000;
  letter-spacing: 0px;
}
.cid-tQzSyga0mJ .mbr-section-title {
  margin-top: 15px;
  color: #0089d2;
}
.cid-tQzSyga0mJ .card__block {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQzSyga0mJ .card__block img {
  object-fit: cover;
  max-width: 70%;
  max-height: 70%;
}
.cid-tQzRPp0cpC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #363638;
}
.cid-tQzRPp0cpC .footer-item {
  padding: 30px;
}
.cid-tQzRPp0cpC .mbr-section-subtitle,
.cid-tQzRPp0cpC .address-text {
  margin-bottom: 1.5rem;
}
.cid-tQzRPp0cpC .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tQzRPp0cpC .social-row {
    padding-top: 1.5rem;
  }
}
.cid-tQzRPp0cpC .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQzRPp0cpC .row {
    text-align: center;
  }
  .cid-tQzRPp0cpC .social-row {
    justify-content: center;
  }
}
.cid-tQzRPp0cpC .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tQzRPp0cpC .footer-content {
    flex-wrap: wrap;
  }
}
.cid-tQzRPp0cpC .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-tQzRPp0cpC .mbr-text {
  color: #ffffff;
}
.cid-tQzRPp0cpC .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tQzRPp0cpC .list a {
  color: #ffffff;
}
.cid-tQzRPp0cpC .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-tQzRPp0cpC .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-tQzRPp0cpC .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-tQzRPp0cpC .mbr-iconfont {
  color: #ffffff;
}
.cid-tQzRPp0cpC .mbr-section-subtitle {
  color: #0089d2;
}
.cid-tQzRPp0cpC .address-text {
  color: #0089d2;
}
.cid-tLhH901xCk .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tLhH901xCk .navbar-fixed-top {
  padding-top: 0;
}
.cid-tLhH901xCk .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-tLhH901xCk .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-tLhH901xCk .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-tLhH901xCk .navbar-buttons {
  flex-wrap: wrap;
}
.cid-tLhH901xCk .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tLhH901xCk .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tLhH901xCk .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-tLhH901xCk .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tLhH901xCk .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tLhH901xCk .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tLhH901xCk .menu-content-top {
  background: #ffffff;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tLhH901xCk .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tLhH901xCk .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-tLhH901xCk .dropdown-item,
.cid-tLhH901xCk .nav-link,
.cid-tLhH901xCk .brand-name {
  font-style: normal;
}
.cid-tLhH901xCk .dropdown-item:hover,
.cid-tLhH901xCk .nav-link:hover,
.cid-tLhH901xCk .brand-name:hover {
  color: #363638 !important;
}
.cid-tLhH901xCk .dropdown-menu {
  background-color: #ffffff;
}
.cid-tLhH901xCk .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tLhH901xCk .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-tLhH901xCk .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tLhH901xCk .nav-item {
  position: relative;
}
.cid-tLhH901xCk .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tLhH901xCk .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-tLhH901xCk .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-tLhH901xCk .nav-link {
    line-height: 6.13;
  }
  .cid-tLhH901xCk .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #363638;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-tLhH901xCk .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
  .cid-tLhH901xCk .dropdown-item {
    color: #83868c !important;
    border-bottom: 0px solid #363638;
  }
}
.cid-tLhH901xCk .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLhH901xCk .content-text {
  margin-bottom: 0;
}
.cid-tLhH901xCk .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tLhH901xCk .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #0089d2;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tLhH901xCk .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tLhH901xCk .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tLhH901xCk .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-tLhH901xCk .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLhH901xCk .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tLhH901xCk .content-right-side {
  text-align: center;
}
.cid-tLhH901xCk .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tLhH901xCk .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tLhH901xCk .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #363638;
}
.cid-tLhH901xCk .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-tLhH901xCk .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tLhH901xCk .info-widget:first-child {
  margin-left: 0;
}
.cid-tLhH901xCk .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tLhH901xCk .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-tLhH901xCk .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-tLhH901xCk .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #e1e3e6;
}
@media (min-width: 992px) {
  .cid-tLhH901xCk .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-tLhH901xCk .navbar {
    display: block;
    padding: 0;
  }
  .cid-tLhH901xCk .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-tLhH901xCk .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tLhH901xCk .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tLhH901xCk .navbar-toggler {
    display: none;
  }
  .cid-tLhH901xCk .navbar-collapse {
    justify-content: center;
  }
}
.cid-tLhH901xCk .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tLhH901xCk .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-tLhH901xCk .btn-sm {
  padding: 13px 29px;
}
.cid-tLhH901xCk .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tLhH901xCk .btn::after {
  background-color: #83868c;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tLhH901xCk .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tLhH901xCk .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tLhH901xCk .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tLhH901xCk .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-tLhH901xCk .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tLhH901xCk .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tLhH901xCk .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tLhH901xCk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLhH901xCk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLhH901xCk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tLhH901xCk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLhH901xCk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLhH901xCk .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tLhH901xCk .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLhH901xCk .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tLhH901xCk .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-tLhH901xCk .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tLhH901xCk .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tLhH901xCk .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tLhH901xCk button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-tLhH901xCk button.navbar-toggler:focus {
  outline: none;
}
.cid-tLhH901xCk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0089d2;
}
.cid-tLhH901xCk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLhH901xCk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLhH901xCk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLhH901xCk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLhH901xCk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLhH901xCk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLhH901xCk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLhH901xCk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLhH901xCk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLhH901xCk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLhH901xCk .collapsed .btn {
  display: flex;
}
.cid-tLhH901xCk .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tLhH901xCk .collapsed .navbar-collapse.collapsing,
.cid-tLhH901xCk .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tLhH901xCk .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tLhH901xCk .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tLhH901xCk .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tLhH901xCk .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tLhH901xCk .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tLhH901xCk .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-tLhH901xCk .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tLhH901xCk .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tLhH901xCk .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tLhH901xCk .collapsed button.navbar-toggler {
  display: block;
}
.cid-tLhH901xCk .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tLhH901xCk .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-tLhH901xCk .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tLhH901xCk .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tLhH901xCk .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tLhH901xCk .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tLhH901xCk .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tLhH901xCk .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-tLhH901xCk .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-tLhH901xCk .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tLhH901xCk .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-tLhH901xCk .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-tLhH901xCk .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-tLhH901xCk .navbar-collapse.collapsing,
  .cid-tLhH901xCk .navbar-collapse.show {
    display: block !important;
  }
  .cid-tLhH901xCk .navbar-collapse.collapsing .navbar-nav,
  .cid-tLhH901xCk .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tLhH901xCk .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tLhH901xCk .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tLhH901xCk .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-tLhH901xCk .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-tLhH901xCk .navbar-collapse.collapsing .navbar-buttons,
  .cid-tLhH901xCk .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tLhH901xCk .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tLhH901xCk .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tLhH901xCk img {
    height: 3.8rem !important;
  }
  .cid-tLhH901xCk .btn {
    display: flex;
  }
  .cid-tLhH901xCk button.navbar-toggler {
    display: block;
  }
  .cid-tLhH901xCk .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tLhH901xCk .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-tLhH901xCk .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tLhH901xCk .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tLhH901xCk .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tLhH901xCk .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tLhH901xCk .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tLhH901xCk .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tLhH901xCk .navbar-toggler {
  position: relative;
}
.cid-tLhH901xCk .dropdown-item.active,
.cid-tLhH901xCk .dropdown-item:active {
  color: initial;
}
.cid-tLhH901xCk .widget-title {
  color: #83868c;
}
.cid-tLhH901xCk .widget-text {
  color: #83868c;
}
.cid-tLhH901xCk .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-tLhH901xCk .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #0089d2;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-tLhH901xCk .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-tLhH901xCk .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #279e64;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-tLhH901xCk .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-tLhH901xCk .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-tLhH901xCk .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-tLhH901xCk .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-tLhH901xCk .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-tLhH901xCk .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-tLhH901xCk .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-tLhH901xCk .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-tLhH901xCk .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-tLhH901xCk .menu-content-top,
  .cid-tLhH901xCk .menu-bottom {
    padding: 0 15px;
  }
  .cid-tLhH901xCk button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-tLhH90ud6i .modal-body .close {
  background: #1b1b1b;
}
.cid-tLhH90ud6i .modal-body .close span {
  font-style: normal;
}
.cid-tLhH90ud6i .carousel-inner > .active,
.cid-tLhH90ud6i .carousel-inner > .next,
.cid-tLhH90ud6i .carousel-inner > .prev {
  display: table;
}
.cid-tLhH90ud6i .mbr-iconfont {
  font-family: 'Moririse2' !important;
}
.cid-tLhH90ud6i .mbri-right:before {
  content: "\e909";
  font-weight: 900;
  padding-left: 5px;
}
.cid-tLhH90ud6i .mbri-left:before {
  content: "\e90a";
  font-weight: 900;
  padding-right: 5px;
}
.cid-tLhH90ud6i .carousel-control,
.cid-tLhH90ud6i .carousel-indicators li {
  background-color: #0089d2 !important;
  opacity: 0.7!important;
  border: none;
}
.cid-tLhH90ud6i .carousel-control:hover,
.cid-tLhH90ud6i .carousel-indicators li:hover {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLhH90ud6i .carousel-control .active,
.cid-tLhH90ud6i .carousel-indicators li .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLhH90ud6i .carousel-indicators .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-tLhH90ud6i .carousel-control .icon-next,
.cid-tLhH90ud6i .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tLhH90ud6i .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tLhH90ud6i .col-10 {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-tLhH90ud6i .col-10 {
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .cid-tLhH90ud6i .carousel-control {
    width: 40px!important;
    height: 40px!important;
  }
  .cid-tLhH90ud6i .mbr-iconfont {
    font-size: 1rem!important;
  }
}
@media (max-width: 767px) {
  .cid-tLhH90ud6i .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tLhH90ud6i .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tLhH90ud6i .boxed-slider > div {
  position: relative;
}
.cid-tLhH90ud6i .container img {
  width: 100%;
}
.cid-tLhH90ud6i .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tLhH90ud6i .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tLhH90ud6i .mbr-table-cell {
  padding: 0;
}
.cid-tLhH90ud6i .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tLhH90ud6i .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-tLhH90ud6i .mbr-overlay {
  z-index: 1;
}
.cid-tLhH90ud6i .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
/* .cid-tLhH90ud6i .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-tLhH90ud6i .carousel-item .container {
    width: 100%;
  }
}
.cid-tLhH90ud6i .carousel-item-next.carousel-item-left,
.cid-tLhH90ud6i .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-tLhH90ud6i .active.carousel-item-right,
.cid-tLhH90ud6i .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-tLhH90ud6i .active.carousel-item-left,
.cid-tLhH90ud6i .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
} */
.cid-tLhH90ud6i .mbr-slider .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all .3s;
}
.cid-tLhH90ud6i .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLhH90ud6i .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLhH90ud6i .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tLhH90ud6i .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tLhH90ud6i .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tLhH90ud6i .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-tLhH90ud6i .mbr-slider .carousel-indicators li.active,
.cid-tLhH90ud6i .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-tLhH90ud6i .mbr-slider .carousel-indicators li::after,
.cid-tLhH90ud6i .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tLhH90ud6i .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tLhH90ud6i .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tLhH90ud6i .mbr-slider > .container img {
  width: 100%;
}
.cid-tLhH90ud6i .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tLhH90ud6i .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tLhH90ud6i .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tLhH90ud6i .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tLhH90ud6i .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tLhH90ud6i .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-tLhH90ud6i .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tLhH90ud6i .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-tLhH90ud6i .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tLhH90ud6i .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tLhH90ud6i .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tLhH90ud6i .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tLhH90ud6i .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tLhH90ud6i H2 {
  text-align: center;
}
.cid-tLhH90YcD5 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease-in-out;
}
.cid-tLhH90YcD5:hover {
  background-color: #f9f9f9;
}
.cid-tLhH90YcD5 .mbr-section-title {
  margin: 0;
}
.cid-tLhH90YcD5 .card-wrapper {
  z-index: 3;
}
.cid-tLhH90YcD5 .full-link {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tLhH90YcD5 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tLhH90YcD5 .mbr-section-title,
.cid-tLhH90YcD5 .text-block {
  color: #0089d2;
}
.cid-tLhH917MJv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tLhH917MJv .mbr-text,
.cid-tLhH917MJv .ornament {
  color: #363638;
}
.cid-tLiBNo160J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease-in-out;
}
.cid-tLiBNo160J:hover {
  background-color: #f9f9f9;
}
.cid-tLiBNo160J .mbr-section-title {
  margin: 0;
}
.cid-tLiBNo160J .card-wrapper {
  z-index: 3;
}
.cid-tLiBNo160J .full-link {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tLiBNo160J .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tLiBNo160J .mbr-section-title,
.cid-tLiBNo160J .text-block {
  color: #363638;
}
.cid-tLiBAqLXIT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tLiBAqLXIT .mbr-text,
.cid-tLiBAqLXIT .ornament {
  color: #363638;
}
.cid-tLiBQSUJ8p {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease-in-out;
}
.cid-tLiBQSUJ8p:hover {
  background-color: #f9f9f9;
}
.cid-tLiBQSUJ8p .mbr-section-title {
  margin: 0;
}
.cid-tLiBQSUJ8p .card-wrapper {
  z-index: 3;
}
.cid-tLiBQSUJ8p .full-link {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tLiBQSUJ8p .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tLiBQSUJ8p .mbr-section-title,
.cid-tLiBQSUJ8p .text-block {
  color: #363638;
}
.cid-tLiyQSMKGY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-tLiyQSMKGY .mbr-text,
.cid-tLiyQSMKGY .ornament {
  color: #363638;
}
.cid-tLhH91u5Sb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #363638;
}
@media (max-width: 767px) {
  .cid-tLhH91u5Sb .mbr-text {
    text-align: center;
  }
}
.cid-tLhH91u5Sb .container-fluid {
  padding: 0;
}
.cid-tLhH91u5Sb .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-tLhH91u5Sb img {
  height: 100%;
  object-fit: cover;
}
.cid-tLhH91u5Sb .mbr-figure {
  height: 100%;
}
.cid-tLhH91u5Sb .col-lg-7 {
  padding: 0;
}
.cid-tLhH91u5Sb .row {
  margin: 0;
}
.cid-tLhH91u5Sb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLhH91u5Sb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLhH91u5Sb .mbr-text,
.cid-tLhH91u5Sb .mbr-section-btn {
  color: #ffffff;
}
.cid-tLhH91u5Sb H1 {
  color: #ffffff;
}
.cid-tRIzbBTdxO {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-tRIzbBTdxO .container.main,
.cid-tRIzbBTdxO .container-fluid.main {
  padding-left: 30px;
  padding-right: 30px;
}
.cid-tRIzbBTdxO .container .mbr-section-subtitle,
.cid-tRIzbBTdxO .container-fluid .mbr-section-subtitle {
  color: #363638;
  margin-bottom: 10px;
}
.cid-tRIzbBTdxO .container .mbr-section-title,
.cid-tRIzbBTdxO .container-fluid .mbr-section-title {
  margin-bottom: 20px;
  color: #0089d2;
}
.cid-tRIzbBTdxO .container .mbr-text,
.cid-tRIzbBTdxO .container-fluid .mbr-text {
  color: #83868c;
}
.cid-tRIzbBTdxO .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0rem;
}
.cid-tRIzbBTdxO .carousel-item > div {
  width: 100%;
}
.cid-tRIzbBTdxO .carousel-item.active,
.cid-tRIzbBTdxO .carousel-item-next,
.cid-tRIzbBTdxO .carousel-item-prev {
  display: flex;
}
.cid-tRIzbBTdxO .carousel-indicators {
  left: 0%;
  margin: 20px auto 0;
  align-items: center;
  bottom: -60px !important;
}
.cid-tRIzbBTdxO .carousel-indicators .active {
  border: 3px solid #ffffff;
  background-color: #ffffff !important;
}
.cid-tRIzbBTdxO .carousel-indicators li {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  transition: border 0.5s;
  background-color: #ffffff;
  font-size: 2rem;
  opacity: 1;
  border-width: 0px;
  margin: 6px;
}
.cid-tRIzbBTdxO .carousel-indicators li:hover {
  opacity: 1;
}
/* @media (max-width: 991px) {
  .cid-tRIzbBTdxO .carousel-controls {
    display: none;
  }
} */
.cid-tRIzbBTdxO .carousel-controls .carousel-control-prev,
.cid-tRIzbBTdxO .carousel-controls .carousel-control-next {
  opacity: 1;
}
.cid-tRIzbBTdxO .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 15px;
}
.cid-tRIzbBTdxO .carousel-controls a span {
  padding: 16.5px;
  border-radius: 50%;
  color: #0089d2;
  background: #ffffff;
  font-weight: bold;
  box-shadow: 0 10px 30px 0 #e7eaf2;
}
.cid-tRIzbBTdxO .carousel-controls a:hover span {
  opacity: 1;
}
.cid-tRIzbBTdxO .card {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 40px 40px 30px;
  position: relative;
}
.cid-tRIzbBTdxO .card .client-content {
  display: block;
}
.cid-tRIzbBTdxO .card .client-content .service-icon {
  text-align: left;
  position: relative;
  display: block;
}
.cid-tRIzbBTdxO .card .client-content .service-icon .front {
  color: #0089d2;
  font-size: 3.1875rem;
  position: relative;
  margin-bottom: 22px;
}
.cid-tRIzbBTdxO .card .client-content .service-icon:after {
  opacity: 0.5;
  width: 76px;
  height: 76px;
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  margin-left: -13%;
  border-radius: 50%;
  z-index: 0;
}
.cid-tRIzbBTdxO .card .client-content .card-text {
  margin-bottom: 25px;
  color: #83868c;
}
.cid-tRIzbBTdxO .card .client-info {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 30px;
}
.cid-tRIzbBTdxO .card .client-info::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -40px;
  right: -40px;
  height: 1px;
  background-color: #f9f9f9;
}
.cid-tRIzbBTdxO .card .client-info .client-image {
  margin-right: 20px;
  flex: none;
  display: block;
}
.cid-tRIzbBTdxO .card .client-info .client-image img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
  display: block;
  max-width: 100%;
}
.cid-tRIzbBTdxO .card .client-info .name-job .signature {
  margin-bottom: 0;
  color: #0089d2;
}
.cid-tRIzbBTdxO .card .client-info .name-job .profession {
  color: #83868c;
}
@media (min-width: 768px) {
  .cid-tRIzbBTdxO .carousel-controls a {
    width: 5%;
  }
  .cid-tRIzbBTdxO .client-info {
    flex-direction: column;
    justify-content: center;
  }
  .cid-tRIzbBTdxO .client-info .client-image {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .cid-tRIzbBTdxO * {
    text-align: center;
  }
}
.cid-tRIzbBTdxO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRIzbBTdxO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRIzbBTdxO .container .mbr-section-subtitle {
  color: #363638;
}
.cid-tRIzbBTdxO .card .client-content .card-text,
.cid-tRIzbBTdxO .mbr-section-btn {
  color: #363638;
}
.cid-tRIzbBTdxO .card .client-info .name-job .profession,
.cid-tRIzbBTdxO .mbr-section-btn {
  color: #363638;
}
.cid-tQzSCitdXA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQzSCitdXA .mbr-section-title,
.cid-tQzSCitdXA .mbr-text {
  margin-bottom: 0;
}
.cid-tQzSCitdXA .title__block {
  margin-bottom: 45px;
}
.cid-tQzSCitdXA .mbr-text {
  color: #000000;
  letter-spacing: 0px;
}
.cid-tQzSCitdXA .mbr-section-title {
  margin-top: 15px;
  color: #0089d2;
}
.cid-tQzSCitdXA .card__block {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tQzSCitdXA .card__block img {
  object-fit: cover;
  max-width: 70%;
  max-height: 70%;
}
.cid-tQzRPp0cpC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #363638;
}
.cid-tQzRPp0cpC .footer-item {
  padding: 30px;
}
.cid-tQzRPp0cpC .mbr-section-subtitle,
.cid-tQzRPp0cpC .address-text {
  margin-bottom: 1.5rem;
}
.cid-tQzRPp0cpC .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tQzRPp0cpC .social-row {
    padding-top: 1.5rem;
  }
}
.cid-tQzRPp0cpC .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQzRPp0cpC .row {
    text-align: center;
  }
  .cid-tQzRPp0cpC .social-row {
    justify-content: center;
  }
}
.cid-tQzRPp0cpC .footer-content {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tQzRPp0cpC .footer-content {
    flex-wrap: wrap;
  }
}
.cid-tQzRPp0cpC .contacts-text {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-tQzRPp0cpC .mbr-text {
  color: #ffffff;
}
.cid-tQzRPp0cpC .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tQzRPp0cpC .list a {
  color: #ffffff;
}
.cid-tQzRPp0cpC .list a:hover {
  background-image: none !important;
  color: #ffffff;
  text-decoration: underline;
}
.cid-tQzRPp0cpC .item-wrap:not(:last-child) {
  padding-bottom: 8px;
}
.cid-tQzRPp0cpC .item-wrap:not(:first-child) {
  margin-top: 8px;
}
.cid-tQzRPp0cpC .mbr-iconfont {
  color: #ffffff;
}
.cid-tQzRPp0cpC .mbr-section-subtitle {
  color: #0089d2;
}
.cid-tQzRPp0cpC .address-text {
  color: #0089d2;
}
