body {
  font-family: Outfit;
}
.display-1 {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 33px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 33px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 33px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 33px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #8c8c8c !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #99c392 !important;
}
.bg-danger {
  background-color: #f04f4f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0e3aa7 !important;
  border-color: #0e3aa7 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #071e57 !important;
  border-color: #071e57 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #8c8c8c !important;
  border-color: #8c8c8c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #616161 !important;
  border-color: #616161 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #99c392 !important;
  border-color: #99c392 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #65a45a !important;
  border-color: #65a45a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f04f4f !important;
  border-color: #f04f4f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #d61212 !important;
  border-color: #d61212 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0e3aa7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #071e57 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0e3aa7 !important;
  border-color: #0e3aa7 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8c8c8c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #616161 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #8c8c8c !important;
  border-color: #8c8c8c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #99c392;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #65a45a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #99c392 !important;
  border-color: #99c392 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f04f4f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d61212 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f04f4f !important;
  border-color: #f04f4f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #0e3aa7 !important;
}
.text-success {
  color: #8c8c8c !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #99c392 !important;
}
.text-danger {
  color: #f04f4f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #061949 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #595959 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #5f9a55 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #c81111 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #99c392;
}
.alert-danger {
  background-color: #f04f4f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #cccccc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #e6f0e4;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #000000 !important;
  background-color: #ffffff !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: #0e3aa7 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.btn-primary,
.btn-secondary,
.btn-info,
.btn-success,
.btn-warning,
.btn-danger,
.btn-white,
.btn-black {
  padding: 15px !important;
  min-width: 100px !important;
}
.cid-tbWniy6u3V .navbar-dropdown {
  background-color: #77b0b3 !important;
  padding: 0;
}
.cid-tbWniy6u3V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #77b0b3 !important;
  background: #77b0b3;
}
.cid-tbWniy6u3V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tbWniy6u3V .menu_box .navbar.opened,
  .cid-tbWniy6u3V .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tbWniy6u3V .navbar-dropdown {
  position: relative !important;
}
.cid-tbWniy6u3V nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tbWniy6u3V .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tbWniy6u3V .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tbWniy6u3V .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tbWniy6u3V .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tbWniy6u3V .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tbWniy6u3V .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #665f6f;
  }
  .cid-tbWniy6u3V .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tbWniy6u3V .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tbWniy6u3V .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tbWniy6u3V .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tbWniy6u3V .offcanvas-body .mbr-text,
  .cid-tbWniy6u3V .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tbWniy6u3V .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tbWniy6u3V .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tbWniy6u3V .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #272727;
  }
  .cid-tbWniy6u3V .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tbWniy6u3V .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tbWniy6u3V .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tbWniy6u3V .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tbWniy6u3V ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tbWniy6u3V .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tbWniy6u3V .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tbWniy6u3V .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tbWniy6u3V li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tbWniy6u3V .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tbWniy6u3V .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tbWniy6u3V .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tbWniy6u3V .nav-item {
    margin: 0 !important;
  }
}
.cid-tbWniy6u3V .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tbWniy6u3V .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tbWniy6u3V .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tbWniy6u3V .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tbWniy6u3V .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tbWniy6u3V .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tbWniy6u3V .offcanvas_box {
    display: none;
  }
}
.cid-tbWniy6u3V .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tbWniy6u3V .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tbWniy6u3V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbWniy6u3V .nav-link {
  position: relative;
  color: #000000;
}
.cid-tbWniy6u3V .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-tbWniy6u3V .container {
  display: flex;
  margin: auto;
}
.cid-tbWniy6u3V .iconfont-wrapper {
  color: #272727;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tbWniy6u3V .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tbWniy6u3V .iconfont-wrapper:hover {
  color: #ffffff;
}
.cid-tbWniy6u3V .navbar-caption {
  color: #000000;
}
.cid-tbWniy6u3V .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tbWniy6u3V .navbar-nav {
    margin: 0;
  }
}
.cid-tbWniy6u3V .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tbWniy6u3V .dropdown-menu,
.cid-tbWniy6u3V .navbar.opened {
  background-color: false !important;
}
.cid-tbWniy6u3V .nav-item:focus,
.cid-tbWniy6u3V .nav-link:focus {
  outline: none;
}
.cid-tbWniy6u3V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbWniy6u3V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbWniy6u3V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbWniy6u3V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbWniy6u3V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbWniy6u3V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbWniy6u3V .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #272727;
}
.cid-tbWniy6u3V .navbar.opened {
  transition: all 0.3s;
}
.cid-tbWniy6u3V .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tbWniy6u3V .navbar .navbar-logo img {
  min-width: 34px;
  min-height: 34px;
  object-fit: cover;
}
.cid-tbWniy6u3V .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tbWniy6u3V .navbar.collapsed {
  justify-content: center;
}
.cid-tbWniy6u3V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbWniy6u3V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tbWniy6u3V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbWniy6u3V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbWniy6u3V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbWniy6u3V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tbWniy6u3V .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tbWniy6u3V .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tbWniy6u3V .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tbWniy6u3V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbWniy6u3V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbWniy6u3V .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tbWniy6u3V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbWniy6u3V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbWniy6u3V .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbWniy6u3V .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tbWniy6u3V .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tbWniy6u3V .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tbWniy6u3V .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbWniy6u3V .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbWniy6u3V .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tbWniy6u3V .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbWniy6u3V .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbWniy6u3V .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbWniy6u3V .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tbWniy6u3V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbWniy6u3V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbWniy6u3V .dropdown-item.active,
.cid-tbWniy6u3V .dropdown-item:active {
  background-color: transparent;
}
.cid-tbWniy6u3V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbWniy6u3V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbWniy6u3V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbWniy6u3V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbWniy6u3V ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tbWniy6u3V .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbWniy6u3V button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #77b0b3;
  background: #ffffff;
}
.cid-tbWniy6u3V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #272727;
}
.cid-tbWniy6u3V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbWniy6u3V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWniy6u3V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWniy6u3V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbWniy6u3V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWniy6u3V nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbWniy6u3V nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbWniy6u3V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWniy6u3V a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tbWniy6u3V .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbWniy6u3V .navbar {
    height: 70px;
  }
  .cid-tbWniy6u3V .navbar.opened {
    height: auto;
  }
  .cid-tbWniy6u3V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbWniy6u3V .mbr-section-btn .btn,
.cid-tbWniy6u3V .mbr-section-btn-main .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbWniy6u3V .mbr-section-btn .btn:first-child,
.cid-tbWniy6u3V .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWniy6u3V .mbr-section-btn .btn:focus,
.cid-tbWniy6u3V .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-tbWniy6u3V .mbr-section-btn .btn span,
.cid-tbWniy6u3V .mbr-section-btn-main .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #272727;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbWniy6u3V .mbr-section-btn .btn:hover,
.cid-tbWniy6u3V .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbWniy6u3V .mbr-section-btn .btn:hover span,
.cid-tbWniy6u3V .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWniy6u3V .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tbWniy6u3V .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tbWniy6u3V .navbar-caption:hover {
  color: #ffffff;
}
.cid-tbWniy6u3V .nav-link:hover {
  color: #ffffff;
}
.cid-tbWniy6u3V .nav-link:hover::before {
  background-color: #272727;
}
.cid-tbWniy6u3V .mbr-section-subtitle {
  color: #124ad6;
}
.cid-tbWniy6u3V .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tbWniy6u3V .mbr-section-subtitle,
.cid-tbWniy6u3V .text_widget {
  text-align: left;
  color: #ffffff;
}
.cid-tbWniy6u3V a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tbWrbrYZkX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/shutterstock-13683348802x-scaled-2000x1122.jpg");
}
.cid-tbWrbrYZkX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWrbrYZkX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbWrbrYZkX .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbWrbrYZkX .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWrbrYZkX .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbWrbrYZkX .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbWrbrYZkX .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbWrbrYZkX .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWrbrYZkX .title-wrapper {
  position: relative;
  margin-top: 20rem;
  padding: 80px 160px 80px 100px;
  background-color: #272727;
}
@media (max-width: 992px) {
  .cid-tbWrbrYZkX .title-wrapper {
    padding: 60px 60px 60px 60px;
  }
}
@media (max-width: 768px) {
  .cid-tbWrbrYZkX .title-wrapper {
    padding: 40px 30px 40px 30px;
  }
}
.cid-tbWrbrYZkX .title-wrapper .title-link-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tbWrbrYZkX .title-wrapper .title-link-wrap {
    margin-bottom: 12px;
  }
}
.cid-tbWrbrYZkX .title-wrapper .title-link-wrap .title-link {
  display: inline-flex;
}
.cid-tbWrbrYZkX .title-wrapper .title-link-wrap .title-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 5px;
  transition: all .3s ease;
}
.cid-tbWrbrYZkX .title-wrapper .title-link-wrap .title-link .mbr-link {
  margin: 0;
}
.cid-tbWrbrYZkX .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tbWrbrYZkX .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-tbWrbrYZkX .title-wrapper .mbr-text {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-tbWrbrYZkX .title-wrapper .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-tbWrbrYZkX .title-link:hover .title-link span {
  transform: translate(-5px, 0);
}
.cid-tbWrbrYZkX .mbr-link,
.cid-tbWrbrYZkX .mbr-iconfont {
  color: #ffffff;
}
.cid-tbWrbrYZkX .mbr-section-title {
  color: #000000;
}
.cid-tbWrbrYZkX .mbr-text {
  color: #ffffff;
}
.cid-tbWrbrYZkX .mbr-section-title,
.cid-tbWrbrYZkX .mbr-section-btn,
.cid-tbWrbrYZkX .title-link-wrap {
  color: #ffffff;
}
.cid-tbWoqc5aA7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #77b0b3;
}
@media (max-width: 992px) {
  .cid-tbWoqc5aA7 .row {
    flex-direction: column-reverse;
  }
}
.cid-tbWoqc5aA7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWoqc5aA7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #272727;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWoqc5aA7 .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tbWoqc5aA7 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tbWoqc5aA7 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tbWoqc5aA7 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tbWoqc5aA7 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tbWoqc5aA7 .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tbWoqc5aA7 .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tbWoqc5aA7 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tbWoqc5aA7 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tbWoqc5aA7 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tbWoqc5aA7 .mbr-section-title {
  color: #000000;
}
.cid-tbWoqc5aA7 .mbr-text {
  color: #000000;
}
.cid-tbWoqc5aA7 .mbr-section-title,
.cid-tbWoqc5aA7 .mbr-section-btn {
  color: #000000;
}
.cid-unBqJqJa4K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-unBqJqJa4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-unBqJqJa4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unBqJqJa4K .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-unBqJqJa4K .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-unBqJqJa4K .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-unBqJqJa4K .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-unBqJqJa4K .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #77b0b3, #292739);
}
@media (max-width: 992px) {
  .cid-unBqJqJa4K .border-wrap {
    margin-top: 32px;
  }
}
.cid-unBqJqJa4K .mbr-section-title {
  color: #ffffff;
}
.cid-unBqJqJa4K .mbr-text,
.cid-unBqJqJa4K .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-unBqJqJa4K .mbr-section-title,
.cid-unBqJqJa4K .mbr-section-btn {
  text-align: center;
}
.cid-unBqOVzghL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #77b0b3;
}
.cid-unBqOVzghL .mbr-fallback-image.disabled {
  display: none;
}
.cid-unBqOVzghL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unBqOVzghL .items-wrap {
  justify-content: space-between;
}
.cid-unBqOVzghL .items-wrap .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-unBqOVzghL .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-unBqOVzghL .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-unBqOVzghL .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-unBqOVzghL .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-unBqOVzghL .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 16px;
    width: 100%;
  }
}
.cid-unBqOVzghL .image-wrapper {
  margin-bottom: 32px;
}
.cid-unBqOVzghL .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-unBqOVzghL .image-wrapper img {
    height: 350px;
  }
}
.cid-unBqOVzghL .mbr-section-title {
  color: #ffffff;
}
.cid-unBqOVzghL .mbr-text,
.cid-unBqOVzghL .text-wrapper {
  color: #000000;
}
.cid-unBqOVzghL .mbr-section-title,
.cid-unBqOVzghL .mbr-section-btn {
  color: #000000;
}
.cid-unBqWwCWt9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-unBqWwCWt9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unBqWwCWt9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unBqWwCWt9 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-unBqWwCWt9 .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-unBqWwCWt9 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-unBqWwCWt9 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-unBqWwCWt9 .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #77b0b3, #292739);
}
@media (max-width: 992px) {
  .cid-unBqWwCWt9 .border-wrap {
    margin-top: 32px;
  }
}
.cid-unBqWwCWt9 .mbr-section-title {
  color: #ffffff;
}
.cid-unBqWwCWt9 .mbr-text,
.cid-unBqWwCWt9 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-unBqWwCWt9 .mbr-section-title,
.cid-unBqWwCWt9 .mbr-section-btn {
  text-align: center;
}
.cid-unBrgDJFQP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #77b0b3;
}
.cid-unBrgDJFQP .mbr-fallback-image.disabled {
  display: none;
}
.cid-unBrgDJFQP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unBrgDJFQP .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-unBrgDJFQP .mbr-section-head {
    margin-bottom: 76px;
  }
}
@media (max-width: 575px) {
  .cid-unBrgDJFQP .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-unBrgDJFQP .main-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-unBrgDJFQP .main-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-unBrgDJFQP .main-subtitle {
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-unBrgDJFQP .card-row {
  margin-bottom: 40px;
}
.cid-unBrgDJFQP .card {
  margin-bottom: -40px;
}
.cid-unBrgDJFQP .card-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius: 10px;
  background-color: #272727;
  box-shadow: 0px -23px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.cid-unBrgDJFQP .card-wrapper:after {
  content: "";
  position: absolute;
  top: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  opacity: 0.3;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #272727;
  box-shadow: 0 0 40px #272727;
  filter: blur(100px);
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-unBrgDJFQP .card-wrapper:after {
    width: 150%;
  }
}
.cid-unBrgDJFQP .title-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-unBrgDJFQP .iconfont-wrapper {
  display: flex;
  margin-right: 1rem;
}
.cid-unBrgDJFQP .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 44px;
  color: #aafc75;
}
.cid-unBrgDJFQP .card-title {
  color: #ffffff;
}
.cid-unBrgDJFQP .card-text {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.cid-unBrxSbX1m {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/factors-for-selecting-a-single-zone-or-multi-zone-hvac-system-1-2000x1298.jpg");
}
.cid-unBrxSbX1m .mbr-fallback-image.disabled {
  display: none;
}
.cid-unBrxSbX1m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unBrxSbX1m .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-unBrxSbX1m .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-unBrxSbX1m .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-unBrxSbX1m .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-unBrxSbX1m .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #bcfe1e, #292739);
}
@media (max-width: 992px) {
  .cid-unBrxSbX1m .border-wrap {
    margin-top: 32px;
  }
}
.cid-unBrxSbX1m .mbr-section-title {
  color: #ffffff;
}
.cid-unBrxSbX1m .mbr-text,
.cid-unBrxSbX1m .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-unBrxSbX1m .mbr-section-title,
.cid-unBrxSbX1m .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-unBvcJw9LB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-unBvcJw9LB .mbr-fallback-image.disabled {
  display: none;
}
.cid-unBvcJw9LB .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-unBvcJw9LB .container {
    padding: 0 16px;
  }
}
.cid-unBvcJw9LB .row {
  position: relative;
  z-index: 1;
}
.cid-unBvcJw9LB .card {
  justify-content: flex-end;
}
.cid-unBvcJw9LB .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-unBvcJw9LB .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-unBvcJw9LB .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-unBvcJw9LB .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-unBvcJw9LB .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-unBvcJw9LB .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-unBvcJw9LB .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-unBvcJw9LB .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-unBvcJw9LB .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-unBvcJw9LB .card-wrapper .card-wrap {
  background-color: #77b0b3;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-unBvcJw9LB .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-unBvcJw9LB .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-unBvcJw9LB .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-unBvcJw9LB .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-unBvcJw9LB .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-unBvcJw9LB .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-unBvcJw9LB .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-unBvcJw9LB .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-unBvcJw9LB .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-unBvcJw9LB .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-unBvcJw9LB .text-wrapper {
    margin-left: 0;
  }
}
.cid-unBvcJw9LB .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-unBvcJw9LB .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-unBvcJw9LB .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-unBvcJw9LB .mbr-text {
  color: #000000;
}
.cid-unBvcJw9LB .card-desc {
  color: #000000;
}
.cid-unBvcJw9LB .card-text {
  color: #000000;
}
.cid-unBvcJw9LB .card-name {
  color: #ffffff;
}
.cid-unBvcJw9LB .card-role {
  color: #ffffff;
}
.cid-unBvcJw9LB .mbr-text,
.cid-unBvcJw9LB .mbr-section-btn {
  color: #ffffff;
}
.cid-unBtKxmXiT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #77b0b3;
}
.cid-unBtKxmXiT .btn {
  border: 1px solid #efefef;
}
.cid-unBtKxmXiT .row {
  align-items: center;
}
.cid-unBtKxmXiT .mbr-iconfont {
  color: #5b6c8f;
}
@media (max-width: 767px) {
  .cid-unBtKxmXiT .row {
    text-align: center;
  }
  .cid-unBtKxmXiT .social-row {
    justify-content: center;
  }
}
.cid-unBtKxmXiT .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-unBtKxmXiT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unBtKxmXiT .list {
    margin-bottom: 0rem;
  }
}
.cid-unBtKxmXiT .google-map {
  height: 34rem;
  position: relative;
}
.cid-unBtKxmXiT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-unBtKxmXiT .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-unBtKxmXiT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-unBtKxmXiT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-unBtKxmXiT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-unBtKxmXiT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-unBtKxmXiT .mbr-section-subtitle {
  color: #000000;
}
.cid-unBtKxmXiT .mbr-text {
  color: #000000;
}
.cid-unBtKxmXiT .phone {
  color: #000000;
}
.cid-unBtKxmXiT .mbr-fallback-image.disabled {
  display: none;
}
.cid-unBtKxmXiT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unBuqJ5aDY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #272727;
  overflow: hidden;
}
.cid-unF92UJPsr .navbar-dropdown {
  background-color: #77b0b3 !important;
  padding: 0;
}
.cid-unF92UJPsr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #77b0b3 !important;
  background: #77b0b3;
}
.cid-unF92UJPsr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-unF92UJPsr .menu_box .navbar.opened,
  .cid-unF92UJPsr .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-unF92UJPsr .navbar-dropdown {
  position: relative !important;
}
.cid-unF92UJPsr nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-unF92UJPsr .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-unF92UJPsr .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-unF92UJPsr .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-unF92UJPsr .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-unF92UJPsr .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-unF92UJPsr .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #665f6f;
  }
  .cid-unF92UJPsr .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-unF92UJPsr .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-unF92UJPsr .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-unF92UJPsr .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-unF92UJPsr .offcanvas-body .mbr-text,
  .cid-unF92UJPsr .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-unF92UJPsr .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-unF92UJPsr .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-unF92UJPsr .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #272727;
  }
  .cid-unF92UJPsr .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-unF92UJPsr .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-unF92UJPsr .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-unF92UJPsr .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-unF92UJPsr ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-unF92UJPsr .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-unF92UJPsr .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-unF92UJPsr .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-unF92UJPsr li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-unF92UJPsr .lg_brand {
    margin: 0 1rem;
  }
}
.cid-unF92UJPsr .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-unF92UJPsr .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-unF92UJPsr .nav-item {
    margin: 0 !important;
  }
}
.cid-unF92UJPsr .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-unF92UJPsr .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-unF92UJPsr .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-unF92UJPsr .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-unF92UJPsr .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-unF92UJPsr .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-unF92UJPsr .offcanvas_box {
    display: none;
  }
}
.cid-unF92UJPsr .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-unF92UJPsr .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-unF92UJPsr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unF92UJPsr .nav-link {
  position: relative;
  color: #000000;
}
.cid-unF92UJPsr .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-unF92UJPsr .container {
  display: flex;
  margin: auto;
}
.cid-unF92UJPsr .iconfont-wrapper {
  color: #272727;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-unF92UJPsr .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-unF92UJPsr .iconfont-wrapper:hover {
  color: #ffffff;
}
.cid-unF92UJPsr .navbar-caption {
  color: #000000;
}
.cid-unF92UJPsr .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-unF92UJPsr .navbar-nav {
    margin: 0;
  }
}
.cid-unF92UJPsr .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-unF92UJPsr .dropdown-menu,
.cid-unF92UJPsr .navbar.opened {
  background-color: false !important;
}
.cid-unF92UJPsr .nav-item:focus,
.cid-unF92UJPsr .nav-link:focus {
  outline: none;
}
.cid-unF92UJPsr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unF92UJPsr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unF92UJPsr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unF92UJPsr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unF92UJPsr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unF92UJPsr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unF92UJPsr .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #272727;
}
.cid-unF92UJPsr .navbar.opened {
  transition: all 0.3s;
}
.cid-unF92UJPsr .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-unF92UJPsr .navbar .navbar-logo img {
  min-width: 34px;
  min-height: 34px;
  object-fit: cover;
}
.cid-unF92UJPsr .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-unF92UJPsr .navbar.collapsed {
  justify-content: center;
}
.cid-unF92UJPsr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unF92UJPsr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unF92UJPsr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unF92UJPsr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unF92UJPsr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unF92UJPsr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-unF92UJPsr .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-unF92UJPsr .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-unF92UJPsr .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-unF92UJPsr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unF92UJPsr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unF92UJPsr .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-unF92UJPsr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unF92UJPsr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unF92UJPsr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unF92UJPsr .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-unF92UJPsr .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-unF92UJPsr .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-unF92UJPsr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unF92UJPsr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unF92UJPsr .navbar .icons-menu {
    padding: 0;
  }
}
.cid-unF92UJPsr .navbar.navbar-short {
  min-height: 60px;
}
.cid-unF92UJPsr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unF92UJPsr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-unF92UJPsr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unF92UJPsr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unF92UJPsr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unF92UJPsr .dropdown-item.active,
.cid-unF92UJPsr .dropdown-item:active {
  background-color: transparent;
}
.cid-unF92UJPsr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unF92UJPsr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unF92UJPsr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unF92UJPsr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unF92UJPsr ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-unF92UJPsr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-unF92UJPsr button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #77b0b3;
  background: #ffffff;
}
.cid-unF92UJPsr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #272727;
}
.cid-unF92UJPsr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unF92UJPsr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unF92UJPsr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unF92UJPsr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unF92UJPsr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unF92UJPsr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unF92UJPsr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unF92UJPsr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unF92UJPsr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-unF92UJPsr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unF92UJPsr .navbar {
    height: 70px;
  }
  .cid-unF92UJPsr .navbar.opened {
    height: auto;
  }
  .cid-unF92UJPsr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unF92UJPsr .mbr-section-btn .btn,
.cid-unF92UJPsr .mbr-section-btn-main .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-unF92UJPsr .mbr-section-btn .btn:first-child,
.cid-unF92UJPsr .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-unF92UJPsr .mbr-section-btn .btn:focus,
.cid-unF92UJPsr .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-unF92UJPsr .mbr-section-btn .btn span,
.cid-unF92UJPsr .mbr-section-btn-main .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #272727;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-unF92UJPsr .mbr-section-btn .btn:hover,
.cid-unF92UJPsr .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-unF92UJPsr .mbr-section-btn .btn:hover span,
.cid-unF92UJPsr .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-unF92UJPsr .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-unF92UJPsr .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-unF92UJPsr .navbar-caption:hover {
  color: #ffffff;
}
.cid-unF92UJPsr .nav-link:hover {
  color: #ffffff;
}
.cid-unF92UJPsr .nav-link:hover::before {
  background-color: #272727;
}
.cid-unF92UJPsr .mbr-section-subtitle {
  color: #124ad6;
}
.cid-unF92UJPsr .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-unF92UJPsr .mbr-section-subtitle,
.cid-unF92UJPsr .text_widget {
  text-align: left;
  color: #ffffff;
}
.cid-unF92UJPsr a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-unF92VGRo9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/qq-1000x1000.jpg");
}
.cid-unF92VGRo9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unF92VGRo9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unF92VGRo9 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-unF92VGRo9 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-unF92VGRo9 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-unF92VGRo9 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-unF92VGRo9 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-unF92VGRo9 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-unF92VGRo9 .title-wrapper {
  position: relative;
  margin-top: 20rem;
  padding: 80px 160px 80px 100px;
  background-color: #272727;
}
@media (max-width: 992px) {
  .cid-unF92VGRo9 .title-wrapper {
    padding: 60px 60px 60px 60px;
  }
}
@media (max-width: 768px) {
  .cid-unF92VGRo9 .title-wrapper {
    padding: 40px 30px 40px 30px;
  }
}
.cid-unF92VGRo9 .title-wrapper .title-link-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-unF92VGRo9 .title-wrapper .title-link-wrap {
    margin-bottom: 12px;
  }
}
.cid-unF92VGRo9 .title-wrapper .title-link-wrap .title-link {
  display: inline-flex;
}
.cid-unF92VGRo9 .title-wrapper .title-link-wrap .title-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 5px;
  transition: all .3s ease;
}
.cid-unF92VGRo9 .title-wrapper .title-link-wrap .title-link .mbr-link {
  margin: 0;
}
.cid-unF92VGRo9 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-unF92VGRo9 .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-unF92VGRo9 .title-wrapper .mbr-text {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-unF92VGRo9 .title-wrapper .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-unF92VGRo9 .title-link:hover .title-link span {
  transform: translate(-5px, 0);
}
.cid-unF92VGRo9 .mbr-link,
.cid-unF92VGRo9 .mbr-iconfont {
  color: #ffffff;
}
.cid-unF92VGRo9 .mbr-section-title {
  color: #000000;
}
.cid-unF92VGRo9 .mbr-text {
  color: #ffffff;
}
.cid-unF92VGRo9 .mbr-section-title,
.cid-unF92VGRo9 .mbr-section-btn,
.cid-unF92VGRo9 .title-link-wrap {
  color: #ffffff;
}
.cid-unF92Xf1UA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-unF92Xf1UA .mbr-fallback-image.disabled {
  display: none;
}
.cid-unF92Xf1UA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unF92Xf1UA .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-unF92Xf1UA .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-unF92Xf1UA .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-unF92Xf1UA .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-unF92Xf1UA .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #77b0b3, #292739);
}
@media (max-width: 992px) {
  .cid-unF92Xf1UA .border-wrap {
    margin-top: 32px;
  }
}
.cid-unF92Xf1UA .mbr-section-title {
  color: #ffffff;
}
.cid-unF92Xf1UA .mbr-text,
.cid-unF92Xf1UA .text-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-unF92Xf1UA .mbr-section-title,
.cid-unF92Xf1UA .mbr-section-btn {
  text-align: center;
}
.cid-unF932qhKd {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #77b0b3;
}
.cid-unF932qhKd .btn {
  border: 1px solid #efefef;
}
.cid-unF932qhKd .row {
  align-items: center;
}
.cid-unF932qhKd .mbr-iconfont {
  color: #5b6c8f;
}
@media (max-width: 767px) {
  .cid-unF932qhKd .row {
    text-align: center;
  }
  .cid-unF932qhKd .social-row {
    justify-content: center;
  }
}
.cid-unF932qhKd .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-unF932qhKd .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unF932qhKd .list {
    margin-bottom: 0rem;
  }
}
.cid-unF932qhKd .google-map {
  height: 34rem;
  position: relative;
}
.cid-unF932qhKd .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-unF932qhKd .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-unF932qhKd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-unF932qhKd .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-unF932qhKd .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-unF932qhKd .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-unF932qhKd .mbr-section-subtitle {
  color: #000000;
}
.cid-unF932qhKd .mbr-text {
  color: #000000;
}
.cid-unF932qhKd .phone {
  color: #000000;
}
.cid-unF932qhKd .mbr-fallback-image.disabled {
  display: none;
}
.cid-unF932qhKd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unF933vYVv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #272727;
  overflow: hidden;
}
.cid-unFaKmYzqE .navbar-dropdown {
  background-color: #77b0b3 !important;
  padding: 0;
}
.cid-unFaKmYzqE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #77b0b3 !important;
  background: #77b0b3;
}
.cid-unFaKmYzqE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-unFaKmYzqE .menu_box .navbar.opened,
  .cid-unFaKmYzqE .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-unFaKmYzqE .navbar-dropdown {
  position: relative !important;
}
.cid-unFaKmYzqE nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-unFaKmYzqE .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-unFaKmYzqE .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-unFaKmYzqE .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-unFaKmYzqE .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-unFaKmYzqE .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-unFaKmYzqE .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #665f6f;
  }
  .cid-unFaKmYzqE .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-unFaKmYzqE .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-unFaKmYzqE .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-unFaKmYzqE .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-unFaKmYzqE .offcanvas-body .mbr-text,
  .cid-unFaKmYzqE .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-unFaKmYzqE .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-unFaKmYzqE .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-unFaKmYzqE .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #272727;
  }
  .cid-unFaKmYzqE .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-unFaKmYzqE .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-unFaKmYzqE .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-unFaKmYzqE .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-unFaKmYzqE ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-unFaKmYzqE .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-unFaKmYzqE .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-unFaKmYzqE .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-unFaKmYzqE li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-unFaKmYzqE .lg_brand {
    margin: 0 1rem;
  }
}
.cid-unFaKmYzqE .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-unFaKmYzqE .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-unFaKmYzqE .nav-item {
    margin: 0 !important;
  }
}
.cid-unFaKmYzqE .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-unFaKmYzqE .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-unFaKmYzqE .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-unFaKmYzqE .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-unFaKmYzqE .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-unFaKmYzqE .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-unFaKmYzqE .offcanvas_box {
    display: none;
  }
}
.cid-unFaKmYzqE .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-unFaKmYzqE .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-unFaKmYzqE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unFaKmYzqE .nav-link {
  position: relative;
  color: #000000;
}
.cid-unFaKmYzqE .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-unFaKmYzqE .container {
  display: flex;
  margin: auto;
}
.cid-unFaKmYzqE .iconfont-wrapper {
  color: #272727;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-unFaKmYzqE .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-unFaKmYzqE .iconfont-wrapper:hover {
  color: #ffffff;
}
.cid-unFaKmYzqE .navbar-caption {
  color: #000000;
}
.cid-unFaKmYzqE .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-unFaKmYzqE .navbar-nav {
    margin: 0;
  }
}
.cid-unFaKmYzqE .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-unFaKmYzqE .dropdown-menu,
.cid-unFaKmYzqE .navbar.opened {
  background-color: false !important;
}
.cid-unFaKmYzqE .nav-item:focus,
.cid-unFaKmYzqE .nav-link:focus {
  outline: none;
}
.cid-unFaKmYzqE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unFaKmYzqE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unFaKmYzqE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unFaKmYzqE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unFaKmYzqE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unFaKmYzqE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unFaKmYzqE .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #272727;
}
.cid-unFaKmYzqE .navbar.opened {
  transition: all 0.3s;
}
.cid-unFaKmYzqE .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-unFaKmYzqE .navbar .navbar-logo img {
  min-width: 34px;
  min-height: 34px;
  object-fit: cover;
}
.cid-unFaKmYzqE .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-unFaKmYzqE .navbar.collapsed {
  justify-content: center;
}
.cid-unFaKmYzqE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unFaKmYzqE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unFaKmYzqE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unFaKmYzqE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unFaKmYzqE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unFaKmYzqE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-unFaKmYzqE .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-unFaKmYzqE .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-unFaKmYzqE .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-unFaKmYzqE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unFaKmYzqE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unFaKmYzqE .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-unFaKmYzqE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unFaKmYzqE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unFaKmYzqE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unFaKmYzqE .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-unFaKmYzqE .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-unFaKmYzqE .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-unFaKmYzqE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unFaKmYzqE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unFaKmYzqE .navbar .icons-menu {
    padding: 0;
  }
}
.cid-unFaKmYzqE .navbar.navbar-short {
  min-height: 60px;
}
.cid-unFaKmYzqE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unFaKmYzqE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-unFaKmYzqE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unFaKmYzqE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unFaKmYzqE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unFaKmYzqE .dropdown-item.active,
.cid-unFaKmYzqE .dropdown-item:active {
  background-color: transparent;
}
.cid-unFaKmYzqE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unFaKmYzqE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unFaKmYzqE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unFaKmYzqE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unFaKmYzqE ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-unFaKmYzqE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-unFaKmYzqE button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #77b0b3;
  background: #ffffff;
}
.cid-unFaKmYzqE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #272727;
}
.cid-unFaKmYzqE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unFaKmYzqE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unFaKmYzqE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unFaKmYzqE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unFaKmYzqE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unFaKmYzqE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unFaKmYzqE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unFaKmYzqE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unFaKmYzqE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-unFaKmYzqE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unFaKmYzqE .navbar {
    height: 70px;
  }
  .cid-unFaKmYzqE .navbar.opened {
    height: auto;
  }
  .cid-unFaKmYzqE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unFaKmYzqE .mbr-section-btn .btn,
.cid-unFaKmYzqE .mbr-section-btn-main .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-unFaKmYzqE .mbr-section-btn .btn:first-child,
.cid-unFaKmYzqE .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-unFaKmYzqE .mbr-section-btn .btn:focus,
.cid-unFaKmYzqE .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-unFaKmYzqE .mbr-section-btn .btn span,
.cid-unFaKmYzqE .mbr-section-btn-main .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #272727;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-unFaKmYzqE .mbr-section-btn .btn:hover,
.cid-unFaKmYzqE .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-unFaKmYzqE .mbr-section-btn .btn:hover span,
.cid-unFaKmYzqE .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-unFaKmYzqE .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-unFaKmYzqE .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-unFaKmYzqE .navbar-caption:hover {
  color: #ffffff;
}
.cid-unFaKmYzqE .nav-link:hover {
  color: #ffffff;
}
.cid-unFaKmYzqE .nav-link:hover::before {
  background-color: #272727;
}
.cid-unFaKmYzqE .mbr-section-subtitle {
  color: #124ad6;
}
.cid-unFaKmYzqE .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-unFaKmYzqE .mbr-section-subtitle,
.cid-unFaKmYzqE .text_widget {
  text-align: left;
  color: #ffffff;
}
.cid-unFaKmYzqE a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-unFaKoCTmZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/blog-hvac-1465x824.jpg");
}
.cid-unFaKoCTmZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-unFaKoCTmZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unFaKoCTmZ .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-unFaKoCTmZ .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-unFaKoCTmZ .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-unFaKoCTmZ .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-unFaKoCTmZ .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-unFaKoCTmZ .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-unFaKoCTmZ .title-wrapper {
  position: relative;
  margin-top: 20rem;
  padding: 80px 160px 80px 100px;
  background-color: #272727;
}
@media (max-width: 992px) {
  .cid-unFaKoCTmZ .title-wrapper {
    padding: 60px 60px 60px 60px;
  }
}
@media (max-width: 768px) {
  .cid-unFaKoCTmZ .title-wrapper {
    padding: 40px 30px 40px 30px;
  }
}
.cid-unFaKoCTmZ .title-wrapper .title-link-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-unFaKoCTmZ .title-wrapper .title-link-wrap {
    margin-bottom: 12px;
  }
}
.cid-unFaKoCTmZ .title-wrapper .title-link-wrap .title-link {
  display: inline-flex;
}
.cid-unFaKoCTmZ .title-wrapper .title-link-wrap .title-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 5px;
  transition: all .3s ease;
}
.cid-unFaKoCTmZ .title-wrapper .title-link-wrap .title-link .mbr-link {
  margin: 0;
}
.cid-unFaKoCTmZ .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-unFaKoCTmZ .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-unFaKoCTmZ .title-wrapper .mbr-text {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-unFaKoCTmZ .title-wrapper .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-unFaKoCTmZ .title-link:hover .title-link span {
  transform: translate(-5px, 0);
}
.cid-unFaKoCTmZ .mbr-link,
.cid-unFaKoCTmZ .mbr-iconfont {
  color: #ffffff;
}
.cid-unFaKoCTmZ .mbr-section-title {
  color: #000000;
}
.cid-unFaKoCTmZ .mbr-text {
  color: #ffffff;
}
.cid-unFaKoCTmZ .mbr-section-title,
.cid-unFaKoCTmZ .mbr-section-btn,
.cid-unFaKoCTmZ .title-link-wrap {
  color: #ffffff;
}
.cid-unFaKpJIRK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-unFaKpJIRK .mbr-fallback-image.disabled {
  display: none;
}
.cid-unFaKpJIRK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unFaKpJIRK .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-unFaKpJIRK .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-unFaKpJIRK .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-unFaKpJIRK .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-unFaKpJIRK .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #77b0b3, #292739);
}
@media (max-width: 992px) {
  .cid-unFaKpJIRK .border-wrap {
    margin-top: 32px;
  }
}
.cid-unFaKpJIRK .mbr-section-title {
  color: #ffffff;
}
.cid-unFaKpJIRK .mbr-text,
.cid-unFaKpJIRK .text-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-unFaKpJIRK .mbr-section-title,
.cid-unFaKpJIRK .mbr-section-btn {
  text-align: center;
}
.cid-unFaKqDTT8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #77b0b3;
}
.cid-unFaKqDTT8 .btn {
  border: 1px solid #efefef;
}
.cid-unFaKqDTT8 .row {
  align-items: center;
}
.cid-unFaKqDTT8 .mbr-iconfont {
  color: #5b6c8f;
}
@media (max-width: 767px) {
  .cid-unFaKqDTT8 .row {
    text-align: center;
  }
  .cid-unFaKqDTT8 .social-row {
    justify-content: center;
  }
}
.cid-unFaKqDTT8 .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-unFaKqDTT8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unFaKqDTT8 .list {
    margin-bottom: 0rem;
  }
}
.cid-unFaKqDTT8 .google-map {
  height: 34rem;
  position: relative;
}
.cid-unFaKqDTT8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-unFaKqDTT8 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-unFaKqDTT8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-unFaKqDTT8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-unFaKqDTT8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-unFaKqDTT8 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-unFaKqDTT8 .mbr-section-subtitle {
  color: #000000;
}
.cid-unFaKqDTT8 .mbr-text {
  color: #000000;
}
.cid-unFaKqDTT8 .phone {
  color: #000000;
}
.cid-unFaKqDTT8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unFaKqDTT8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unFaKrJZIH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #272727;
  overflow: hidden;
}
.cid-unFbcM08d5 .navbar-dropdown {
  background-color: #77b0b3 !important;
  padding: 0;
}
.cid-unFbcM08d5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #77b0b3 !important;
  background: #77b0b3;
}
.cid-unFbcM08d5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-unFbcM08d5 .menu_box .navbar.opened,
  .cid-unFbcM08d5 .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-unFbcM08d5 .navbar-dropdown {
  position: relative !important;
}
.cid-unFbcM08d5 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-unFbcM08d5 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-unFbcM08d5 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-unFbcM08d5 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-unFbcM08d5 .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-unFbcM08d5 .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-unFbcM08d5 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #665f6f;
  }
  .cid-unFbcM08d5 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-unFbcM08d5 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-unFbcM08d5 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-unFbcM08d5 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-unFbcM08d5 .offcanvas-body .mbr-text,
  .cid-unFbcM08d5 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-unFbcM08d5 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-unFbcM08d5 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-unFbcM08d5 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #272727;
  }
  .cid-unFbcM08d5 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-unFbcM08d5 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-unFbcM08d5 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-unFbcM08d5 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-unFbcM08d5 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-unFbcM08d5 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-unFbcM08d5 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-unFbcM08d5 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-unFbcM08d5 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-unFbcM08d5 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-unFbcM08d5 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-unFbcM08d5 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-unFbcM08d5 .nav-item {
    margin: 0 !important;
  }
}
.cid-unFbcM08d5 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-unFbcM08d5 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-unFbcM08d5 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-unFbcM08d5 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-unFbcM08d5 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-unFbcM08d5 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-unFbcM08d5 .offcanvas_box {
    display: none;
  }
}
.cid-unFbcM08d5 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-unFbcM08d5 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-unFbcM08d5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unFbcM08d5 .nav-link {
  position: relative;
  color: #000000;
}
.cid-unFbcM08d5 .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-unFbcM08d5 .container {
  display: flex;
  margin: auto;
}
.cid-unFbcM08d5 .iconfont-wrapper {
  color: #272727;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-unFbcM08d5 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-unFbcM08d5 .iconfont-wrapper:hover {
  color: #ffffff;
}
.cid-unFbcM08d5 .navbar-caption {
  color: #000000;
}
.cid-unFbcM08d5 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-unFbcM08d5 .navbar-nav {
    margin: 0;
  }
}
.cid-unFbcM08d5 .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-unFbcM08d5 .dropdown-menu,
.cid-unFbcM08d5 .navbar.opened {
  background-color: false !important;
}
.cid-unFbcM08d5 .nav-item:focus,
.cid-unFbcM08d5 .nav-link:focus {
  outline: none;
}
.cid-unFbcM08d5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unFbcM08d5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unFbcM08d5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unFbcM08d5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unFbcM08d5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unFbcM08d5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unFbcM08d5 .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #272727;
}
.cid-unFbcM08d5 .navbar.opened {
  transition: all 0.3s;
}
.cid-unFbcM08d5 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-unFbcM08d5 .navbar .navbar-logo img {
  min-width: 34px;
  min-height: 34px;
  object-fit: cover;
}
.cid-unFbcM08d5 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-unFbcM08d5 .navbar.collapsed {
  justify-content: center;
}
.cid-unFbcM08d5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unFbcM08d5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unFbcM08d5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unFbcM08d5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unFbcM08d5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unFbcM08d5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-unFbcM08d5 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-unFbcM08d5 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-unFbcM08d5 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-unFbcM08d5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unFbcM08d5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unFbcM08d5 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-unFbcM08d5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unFbcM08d5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unFbcM08d5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unFbcM08d5 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-unFbcM08d5 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-unFbcM08d5 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-unFbcM08d5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unFbcM08d5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unFbcM08d5 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-unFbcM08d5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-unFbcM08d5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unFbcM08d5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-unFbcM08d5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unFbcM08d5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unFbcM08d5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unFbcM08d5 .dropdown-item.active,
.cid-unFbcM08d5 .dropdown-item:active {
  background-color: transparent;
}
.cid-unFbcM08d5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unFbcM08d5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unFbcM08d5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unFbcM08d5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unFbcM08d5 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-unFbcM08d5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-unFbcM08d5 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #77b0b3;
  background: #ffffff;
}
.cid-unFbcM08d5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #272727;
}
.cid-unFbcM08d5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unFbcM08d5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unFbcM08d5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unFbcM08d5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unFbcM08d5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unFbcM08d5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unFbcM08d5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unFbcM08d5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unFbcM08d5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-unFbcM08d5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unFbcM08d5 .navbar {
    height: 70px;
  }
  .cid-unFbcM08d5 .navbar.opened {
    height: auto;
  }
  .cid-unFbcM08d5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unFbcM08d5 .mbr-section-btn .btn,
.cid-unFbcM08d5 .mbr-section-btn-main .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-unFbcM08d5 .mbr-section-btn .btn:first-child,
.cid-unFbcM08d5 .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-unFbcM08d5 .mbr-section-btn .btn:focus,
.cid-unFbcM08d5 .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-unFbcM08d5 .mbr-section-btn .btn span,
.cid-unFbcM08d5 .mbr-section-btn-main .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #272727;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-unFbcM08d5 .mbr-section-btn .btn:hover,
.cid-unFbcM08d5 .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-unFbcM08d5 .mbr-section-btn .btn:hover span,
.cid-unFbcM08d5 .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-unFbcM08d5 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-unFbcM08d5 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-unFbcM08d5 .navbar-caption:hover {
  color: #ffffff;
}
.cid-unFbcM08d5 .nav-link:hover {
  color: #ffffff;
}
.cid-unFbcM08d5 .nav-link:hover::before {
  background-color: #272727;
}
.cid-unFbcM08d5 .mbr-section-subtitle {
  color: #124ad6;
}
.cid-unFbcM08d5 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-unFbcM08d5 .mbr-section-subtitle,
.cid-unFbcM08d5 .text_widget {
  text-align: left;
  color: #ffffff;
}
.cid-unFbcM08d5 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-unFbcNovB1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/emura-silver-wall-unit-in-bedroom-for-hero-large-size-1-2500-1-2000x1334.jpg");
}
.cid-unFbcNovB1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unFbcNovB1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unFbcNovB1 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-unFbcNovB1 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-unFbcNovB1 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-unFbcNovB1 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-unFbcNovB1 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-unFbcNovB1 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-unFbcNovB1 .title-wrapper {
  position: relative;
  margin-top: 20rem;
  padding: 80px 160px 80px 100px;
  background-color: #272727;
}
@media (max-width: 992px) {
  .cid-unFbcNovB1 .title-wrapper {
    padding: 60px 60px 60px 60px;
  }
}
@media (max-width: 768px) {
  .cid-unFbcNovB1 .title-wrapper {
    padding: 40px 30px 40px 30px;
  }
}
.cid-unFbcNovB1 .title-wrapper .title-link-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-unFbcNovB1 .title-wrapper .title-link-wrap {
    margin-bottom: 12px;
  }
}
.cid-unFbcNovB1 .title-wrapper .title-link-wrap .title-link {
  display: inline-flex;
}
.cid-unFbcNovB1 .title-wrapper .title-link-wrap .title-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 5px;
  transition: all .3s ease;
}
.cid-unFbcNovB1 .title-wrapper .title-link-wrap .title-link .mbr-link {
  margin: 0;
}
.cid-unFbcNovB1 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-unFbcNovB1 .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-unFbcNovB1 .title-wrapper .mbr-text {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-unFbcNovB1 .title-wrapper .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-unFbcNovB1 .title-link:hover .title-link span {
  transform: translate(-5px, 0);
}
.cid-unFbcNovB1 .mbr-link,
.cid-unFbcNovB1 .mbr-iconfont {
  color: #ffffff;
}
.cid-unFbcNovB1 .mbr-section-title {
  color: #000000;
}
.cid-unFbcNovB1 .mbr-text {
  color: #ffffff;
}
.cid-unFbcNovB1 .mbr-section-title,
.cid-unFbcNovB1 .mbr-section-btn,
.cid-unFbcNovB1 .title-link-wrap {
  color: #ffffff;
}
.cid-unFbcOh4K9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-unFbcOh4K9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unFbcOh4K9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unFbcOh4K9 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-unFbcOh4K9 .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-unFbcOh4K9 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-unFbcOh4K9 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-unFbcOh4K9 .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #77b0b3, #292739);
}
@media (max-width: 992px) {
  .cid-unFbcOh4K9 .border-wrap {
    margin-top: 32px;
  }
}
.cid-unFbcOh4K9 .mbr-section-title {
  color: #ffffff;
}
.cid-unFbcOh4K9 .mbr-text,
.cid-unFbcOh4K9 .text-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-unFbcOh4K9 .mbr-section-title,
.cid-unFbcOh4K9 .mbr-section-btn {
  text-align: center;
}
.cid-unFbcPasNp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #77b0b3;
}
.cid-unFbcPasNp .btn {
  border: 1px solid #efefef;
}
.cid-unFbcPasNp .row {
  align-items: center;
}
.cid-unFbcPasNp .mbr-iconfont {
  color: #5b6c8f;
}
@media (max-width: 767px) {
  .cid-unFbcPasNp .row {
    text-align: center;
  }
  .cid-unFbcPasNp .social-row {
    justify-content: center;
  }
}
.cid-unFbcPasNp .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-unFbcPasNp .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unFbcPasNp .list {
    margin-bottom: 0rem;
  }
}
.cid-unFbcPasNp .google-map {
  height: 34rem;
  position: relative;
}
.cid-unFbcPasNp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-unFbcPasNp .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-unFbcPasNp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-unFbcPasNp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-unFbcPasNp .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-unFbcPasNp .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-unFbcPasNp .mbr-section-subtitle {
  color: #000000;
}
.cid-unFbcPasNp .mbr-text {
  color: #000000;
}
.cid-unFbcPasNp .phone {
  color: #000000;
}
.cid-unFbcPasNp .mbr-fallback-image.disabled {
  display: none;
}
.cid-unFbcPasNp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unFbcPYKa0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #272727;
  overflow: hidden;
}
