body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((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: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4479d9;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2150a5 !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: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !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: #ff9966 !important;
  border-color: #ff9966 !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: #6592e6 !important;
}
.text-secondary {
  color: #4479d9 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #1f4a98 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.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: #a0d8df;
}
.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: #ffffff;
}
.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: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !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: #4479d9 !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='%236592e6' %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;
}
.cid-tqrKZjVuQ8 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tqrKZjVuQ8 .navbar-fixed-top {
  padding-top: 0;
}
.cid-tqrKZjVuQ8 .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-tqrKZjVuQ8 .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-tqrKZjVuQ8 .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-tqrKZjVuQ8 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-tqrKZjVuQ8 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tqrKZjVuQ8 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tqrKZjVuQ8 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-tqrKZjVuQ8 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tqrKZjVuQ8 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tqrKZjVuQ8 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tqrKZjVuQ8 .menu-content-top {
  background: #ffffff;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tqrKZjVuQ8 .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tqrKZjVuQ8 .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-tqrKZjVuQ8 .dropdown-item,
.cid-tqrKZjVuQ8 .nav-link,
.cid-tqrKZjVuQ8 .brand-name {
  font-style: normal;
}
.cid-tqrKZjVuQ8 .dropdown-item:hover,
.cid-tqrKZjVuQ8 .nav-link:hover,
.cid-tqrKZjVuQ8 .brand-name:hover {
  color: #124ad6 !important;
}
.cid-tqrKZjVuQ8 .dropdown-menu {
  background-color: #ffffff;
}
.cid-tqrKZjVuQ8 .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tqrKZjVuQ8 .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-tqrKZjVuQ8 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tqrKZjVuQ8 .nav-item {
  position: relative;
}
.cid-tqrKZjVuQ8 .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tqrKZjVuQ8 .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-tqrKZjVuQ8 .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-tqrKZjVuQ8 .nav-link {
    line-height: 3;
  }
  .cid-tqrKZjVuQ8 .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #ffe161;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-tqrKZjVuQ8 .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-tqrKZjVuQ8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqrKZjVuQ8 .content-text {
  margin-bottom: 0;
}
.cid-tqrKZjVuQ8 .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tqrKZjVuQ8 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tqrKZjVuQ8 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tqrKZjVuQ8 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tqrKZjVuQ8 .navbar-nav .nav-item .link {
  margin: 0 10px !important;
}
.cid-tqrKZjVuQ8 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqrKZjVuQ8 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tqrKZjVuQ8 .content-right-side {
  text-align: center;
}
.cid-tqrKZjVuQ8 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tqrKZjVuQ8 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tqrKZjVuQ8 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #4479d9;
}
.cid-tqrKZjVuQ8 .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-tqrKZjVuQ8 .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tqrKZjVuQ8 .info-widget:first-child {
  margin-left: 0;
}
.cid-tqrKZjVuQ8 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tqrKZjVuQ8 .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-tqrKZjVuQ8 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-tqrKZjVuQ8 .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-tqrKZjVuQ8 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-tqrKZjVuQ8 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tqrKZjVuQ8 .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-tqrKZjVuQ8 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tqrKZjVuQ8 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tqrKZjVuQ8 .navbar-toggler {
    display: none;
  }
  .cid-tqrKZjVuQ8 .navbar-collapse {
    justify-content: center;
  }
}
.cid-tqrKZjVuQ8 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tqrKZjVuQ8 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-tqrKZjVuQ8 .btn-sm {
  padding: 13px 29px;
}
.cid-tqrKZjVuQ8 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tqrKZjVuQ8 .btn::after {
  background-color: #47b5ed;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tqrKZjVuQ8 .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tqrKZjVuQ8 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tqrKZjVuQ8 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tqrKZjVuQ8 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-tqrKZjVuQ8 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tqrKZjVuQ8 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tqrKZjVuQ8 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tqrKZjVuQ8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqrKZjVuQ8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqrKZjVuQ8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tqrKZjVuQ8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tqrKZjVuQ8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqrKZjVuQ8 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tqrKZjVuQ8 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqrKZjVuQ8 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tqrKZjVuQ8 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-tqrKZjVuQ8 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tqrKZjVuQ8 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tqrKZjVuQ8 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tqrKZjVuQ8 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-tqrKZjVuQ8 button.navbar-toggler:focus {
  outline: none;
}
.cid-tqrKZjVuQ8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-tqrKZjVuQ8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqrKZjVuQ8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqrKZjVuQ8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqrKZjVuQ8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqrKZjVuQ8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqrKZjVuQ8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqrKZjVuQ8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqrKZjVuQ8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqrKZjVuQ8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqrKZjVuQ8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqrKZjVuQ8 .collapsed .btn {
  display: flex;
}
.cid-tqrKZjVuQ8 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tqrKZjVuQ8 .collapsed .navbar-collapse.collapsing,
.cid-tqrKZjVuQ8 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tqrKZjVuQ8 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tqrKZjVuQ8 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tqrKZjVuQ8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tqrKZjVuQ8 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tqrKZjVuQ8 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tqrKZjVuQ8 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-tqrKZjVuQ8 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tqrKZjVuQ8 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tqrKZjVuQ8 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tqrKZjVuQ8 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tqrKZjVuQ8 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tqrKZjVuQ8 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-tqrKZjVuQ8 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tqrKZjVuQ8 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tqrKZjVuQ8 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tqrKZjVuQ8 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tqrKZjVuQ8 .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tqrKZjVuQ8 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-tqrKZjVuQ8 .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-tqrKZjVuQ8 .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tqrKZjVuQ8 .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-tqrKZjVuQ8 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-tqrKZjVuQ8 .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-tqrKZjVuQ8 .navbar-collapse.collapsing,
  .cid-tqrKZjVuQ8 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tqrKZjVuQ8 .navbar-collapse.collapsing .navbar-nav,
  .cid-tqrKZjVuQ8 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tqrKZjVuQ8 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tqrKZjVuQ8 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tqrKZjVuQ8 .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-tqrKZjVuQ8 .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-tqrKZjVuQ8 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tqrKZjVuQ8 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tqrKZjVuQ8 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tqrKZjVuQ8 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tqrKZjVuQ8 img {
    height: 3.8rem !important;
  }
  .cid-tqrKZjVuQ8 .btn {
    display: flex;
  }
  .cid-tqrKZjVuQ8 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-tqrKZjVuQ8 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tqrKZjVuQ8 .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-tqrKZjVuQ8 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tqrKZjVuQ8 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tqrKZjVuQ8 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tqrKZjVuQ8 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tqrKZjVuQ8 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tqrKZjVuQ8 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tqrKZjVuQ8 .navbar-toggler {
  position: relative;
}
.cid-tqrKZjVuQ8 .dropdown-item.active,
.cid-tqrKZjVuQ8 .dropdown-item:active {
  color: initial;
}
.cid-tqrKZjVuQ8 .widget-title {
  color: #47b5ed;
}
.cid-tqrKZjVuQ8 .widget-text {
  color: #47b5ed;
}
.cid-tqrKZjVuQ8 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-tqrKZjVuQ8 .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #6592e6;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-tqrKZjVuQ8 .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-tqrKZjVuQ8 .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #279e64;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-tqrKZjVuQ8 .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-tqrKZjVuQ8 .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-tqrKZjVuQ8 .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-tqrKZjVuQ8 .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-tqrKZjVuQ8 .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-tqrKZjVuQ8 .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-tqrKZjVuQ8 .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-tqrKZjVuQ8 .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-tqrKZjVuQ8 .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-tqrKZjVuQ8 .menu-content-top,
  .cid-tqrKZjVuQ8 .menu-bottom {
    padding: 0 15px;
  }
  .cid-tqrKZjVuQ8 button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-tqrKZjVuQ8 .widget-title,
.cid-tqrKZjVuQ8 .widget-icon {
  color: #232323;
  text-align: center;
}
.cid-tqs18ucybk {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/living-room-scandinavian-interior-design-1-1920x1280.jpeg");
}
.cid-tqs18ucybk .main-container {
  width: 100%;
}
.cid-tqs18ucybk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqs18ucybk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqs18ucybk .text-wrapper {
  margin: 0 160px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tqs18ucybk .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tqs18ucybk .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tqs18ucybk .mbr-section-title {
  color: #FFFFFF;
}
.cid-txa9HcaOL0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f0f2f5;
}
.cid-txa9HcaOL0 .container-fluid {
  max-width: 1500px;
}
.cid-txa9HcaOL0 .icon1 {
  font-size: 2.2rem;
}
.cid-txa9HcaOL0 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-txa9HcaOL0 .team-card:hover {
  transform: translateY(-10px);
}
@media (min-width: 1400px) {
  .cid-txa9HcaOL0 .col-lg-3 {
    padding: 0 1.5rem;
  }
}
.cid-txa9HcaOL0 .card-wrap {
  height: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
}
.cid-txa9HcaOL0 .card-wrap:hover img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .cid-txa9HcaOL0 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-txa9HcaOL0 .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  height: 300px;
  object-fit: cover;
}
.cid-txa9HcaOL0 .card-wrap .content-wrap {
  margin: auto;
}
@media (min-width: 768px) {
  .cid-txa9HcaOL0 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txa9HcaOL0 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-txa9HcaOL0 .content-wrap {
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.cid-txa9HcaOL0 .text-wrapper {
  display: flex;
}
.cid-txa9HcaOL0 .text-wrapper span {
  color: #6592e6;
  padding-right: 1rem;
}
.cid-txa9HcaOL0 .mbr-main-subtitle {
  background: #6592e6;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  position: relative;
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-txa9HcaOL0 .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #6592e6;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-txa9HcaOL0 .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-txa9HcaOL0 .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-left: 3rem;
}
.cid-txa9HcaOL0 .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #6592e6;
}
@media (max-width: 767px) {
  .cid-txa9HcaOL0 .social {
    padding-left: 0rem;
  }
}
.cid-txa9HcaOL0 .icons-menu {
  display: flex;
}
@media (max-width: 767px) {
  .cid-txa9HcaOL0 .icons-menu {
    justify-content: center;
  }
}
.cid-txa9HcaOL0 .image-wrap {
  clip-path: polygon(100% 0, 100% 100%, 0% 94%, 0% 0%);
}
.cid-txa9HcaOL0 .iconfont-wrapper {
  font-size: 1.2rem;
  padding: 0.4rem 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-txa9HcaOL0 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #6592e6;
  z-index: 0;
}
.cid-txa9HcaOL0 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-txa9HcaOL0 .mbr-iconfont {
  position: relative;
  fomt-size: 1rem;
  color: #272727;
}
.cid-txa9HcaOL0 .card-text,
.cid-txa9HcaOL0 .mbr-section-btn,
.cid-txa9HcaOL0 .social-row {
  color: #4479d9;
  text-align: center;
}
.cid-txa9HcaOL0 .mbr-role,
.cid-txa9HcaOL0 .social-row {
  color: #353535;
  text-align: left;
}
.cid-txa9HcaOL0 .card-title,
.cid-txa9HcaOL0 .social-row {
  color: #272727;
  text-align: center;
}
.cid-txa9HcaOL0 .mbr-section-title {
  color: #272727;
}
.cid-txa9HcaOL0 .card1-text {
  color: #272727;
}
.cid-txa9HcaOL0 .soc-link,
.cid-txa9HcaOL0 .soc-wrapper {
  color: #272727;
}
.cid-twprUnc3uU {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/living-room-interior-wall-mockup-warm-tones-with-leather-sofa-which-is-kitchen-3d-rendering.jpg");
}
.cid-twprUnc3uU .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-twprUnc3uU a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-twprUnc3uU .mbr-section-btn {
  margin: 0;
}
.cid-twprUnc3uU .form-control {
  box-shadow: none;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #353535;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-twprUnc3uU .form-control:focus,
.cid-twprUnc3uU .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-twprUnc3uU .form-group {
  margin-bottom: 1rem;
}
.cid-twprUnc3uU input::-webkit-input-placeholder,
.cid-twprUnc3uU textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-twprUnc3uU input:-moz-placeholder,
.cid-twprUnc3uU textarea:-moz-placeholder {
  color: #353535;
}
.cid-twprUnc3uU .jq-selectbox li,
.cid-twprUnc3uU .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-twprUnc3uU .jq-selectbox li:hover,
.cid-twprUnc3uU .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-twprUnc3uU .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-twprUnc3uU .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-twprUnc3uU .form-group,
.cid-twprUnc3uU .mbr-section-btn {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
@media (min-width: 992px) {
  .cid-twprUnc3uU .col-auto.mbr-section-btn .btn {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .cid-twprUnc3uU .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-twprUnc3uU .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 499px) {
  .cid-twprUnc3uU .form-block {
    padding: 1rem;
  }
}
.cid-twprUnc3uU H4 {
  color: #ffffff;
}
.cid-twprUnc3uU P {
  color: #ffffff;
}
.cid-twprUnc3uU LABEL {
  color: #f0f2f5;
}
.cid-txan6V9eXw {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f0f2f5;
}
@media (max-width: 767px) {
  .cid-txan6V9eXw .row {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-txan6V9eXw .col-text {
    padding: 0 0 0 0;
  }
}
.cid-txan6V9eXw .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txan6V9eXw .text-wrapper {
    text-align: center !important;
    padding-bottom: 54px;
  }
}
.cid-txan6V9eXw .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #4479d9;
}
@media (max-width: 767px) {
  .cid-txan6V9eXw .label-text {
    text-align: center !important;
  }
}
.cid-txan6V9eXw .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-txan6V9eXw .mbr-section-title {
    text-align: center !important;
  }
}
.cid-txan6V9eXw .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-txan6V9eXw .mbr-text {
    text-align: center !important;
  }
}
.cid-txan6V9eXw .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-txan6V9eXw .btn-container {
  width: 100%;
  margin-top: auto;
}
.cid-txan6V9eXw .mbr-section-btn .btn {
  padding: 0;
}
.cid-txan6V9eXw .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-txan6V9eXw .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-txan6V9eXw .col-cards {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cid-txan6V9eXw .col-cards {
    padding: 0;
    padding-left: 1.8%;
  }
}
@media (min-width: 992px) {
  .cid-txan6V9eXw .col-cards {
    padding-left: 5%;
  }
}
.cid-txan6V9eXw .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  width: 100%;
}
.cid-txan6V9eXw .cards-wrap:hover {
  background-color: #ffffff;
}
.cid-txan6V9eXw .card {
  padding: 30px;
  background-color: #f0f2f5;
  transition: 0.4s all;
  border-radius: 0;
}
.cid-txan6V9eXw .card:hover {
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-txan6V9eXw .card:hover {
    transform: translate(0px, -10px);
  }
}
.cid-txan6V9eXw .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-txan6V9eXw .img-container {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-txan6V9eXw .img-container {
    display: flex;
    justify-content: center;
  }
}
.cid-txan6V9eXw .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  height: 93px;
  position: relative;
}
.cid-txan6V9eXw .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txan6V9eXw .img-bg {
  background-color: #ffed27;
  min-width: 75%;
  height: 75%;
  border-radius: 50%;
  position: absolute;
}
.cid-txan6V9eXw .card-title {
  color: #ffed27;
  margin-bottom: 8px;
}
.cid-txan6V9eXw .card-text {
  color: #222222;
  margin-bottom: 0;
  text-align: left;
}
.cid-twpMa3Br9H {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/cozy-study-room-modern-apartment-1920x1280.jpg");
}
.cid-twpMa3Br9H .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-twpMa3Br9H .mbr-section-title {
  margin: 0;
  color: #ffffff;
}
.cid-twpMa3Br9H .mbr-section-subtitle {
  color: #ffffff;
}
.cid-twpMa3Br9H .card-img span {
  color: #4479d9;
}
.cid-twpMa3Br9H .row-item {
  margin-bottom: 2rem;
}
.cid-twpMa3Br9H .row-item:hover .wrapper {
  background: linear-gradient(90deg, #4479d9, #4479d9);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-twpMa3Br9H .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-twpMa3Br9H .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-twpMa3Br9H .wrapper {
  padding: 2.5rem 1rem;
  background: #f0f2f5;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-twpMa3Br9H .mbr-card-title,
.cid-twpMa3Br9H .card-img {
  color: #353535;
}
.cid-tqtvgnrfnZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f0f2f5;
}
.cid-tqtvgnrfnZ .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-tqtvgnrfnZ .row {
    padding: 0 0.75rem;
  }
}
.cid-tqtvgnrfnZ .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-tqtvgnrfnZ .label-text {
  color: #4479d9;
}
.cid-tqtvgnrfnZ .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-tqtvgnrfnZ .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tqtvgnrfnZ .card {
    padding: 0;
  }
}
.cid-tqtvgnrfnZ .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-tqtvgnrfnZ .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-tqtvgnrfnZ .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-tqtvgnrfnZ .card-text {
  color: #555555;
}
.cid-tqtvgnrfnZ .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-tqtvgnrfnZ .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-tqtvgnrfnZ .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tqtvgnrfnZ .card-box {
    text-align: center;
  }
}
.cid-tqtvgnrfnZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqtvgnrfnZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqx2SomxHN {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f0f2f5;
}
.cid-tqx2SomxHN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqx2SomxHN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqx2SomxHN .mbr-text {
  color: #767676;
}
.cid-tqx2SomxHN .mbr-section-subtitle {
  color: #767676;
}
.cid-tqx2SomxHN .title .num {
  width: 100%;
  display: block;
}
.cid-tqx2SomxHN .title .card-title {
  z-index: 1;
}
.cid-tqx2SomxHN .num {
  color: #6592e6;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tqx2SomxHN * {
    text-align: center !important;
  }
  .cid-tqx2SomxHN .content-column {
    margin-bottom: 2rem;
  }
}
.cid-tqx2SomxHN .card-text {
  color: #000000;
  text-align: left;
}
.cid-tqx2SomxHN .card-title,
.cid-tqx2SomxHN .card-img {
  text-align: left;
  color: #000000;
}
.cid-twqjWUIlVu {
  background-color: #4479d9;
}
@media (min-width: 768px) {
  .cid-twqjWUIlVu {
    background-image: url("../../../assets/images/repairman-doing-air-conditioner-service-1000x667.jpg");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 50% auto;
  }
}
.cid-twqjWUIlVu .row {
  align-items: center;
}
.cid-twqjWUIlVu .image-wrapper {
  padding: 1rem;
}
.cid-twqjWUIlVu .col-text {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.cid-twqjWUIlVu .col-text .radial-svg {
  display: none;
}
@media (min-width: 992px) {
  .cid-twqjWUIlVu .col-text .radial-svg {
    display: block;
    position: absolute;
    top: 0;
    right: -90px;
    bottom: 0;
    height: 100%;
    width: 200px;
    z-index: 1;
  }
  .cid-twqjWUIlVu .col-text .radial-svg path {
    fill: #4479d9;
  }
}
.cid-twqjWUIlVu .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .cid-twqjWUIlVu .text-wrapper {
    max-width: 400px;
  }
}
.cid-twqjWUIlVu .label-text {
  width: 100%;
  color: #ffffff;
}
.cid-twqjWUIlVu .mbr-section-title {
  margin-bottom: 1.425rem;
  width: 100%;
  color: #ffffff;
}
.cid-twqjWUIlVu .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 12px;
}
.cid-twqjWUIlVu .btn-container {
  width: 100%;
}
.cid-twqjWUIlVu .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-twqjWUIlVu .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-twqjWUIlVu .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-twqjWUIlVu .btn-white-outline {
  border: 1px solid currentColor;
}
.cid-twqjWUIlVu .btn-white-outline:hover {
  color: #6592e6 !important;
  background: #ffffff !important;
}
.cid-twqjWUIlVu .mbr-fallback-image.disabled {
  display: none;
}
.cid-twqjWUIlVu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txaiI4IaXG {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f0f2f5;
}
.cid-txaiI4IaXG .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-txaiI4IaXG .row {
    padding: 0 0.75rem;
  }
}
.cid-txaiI4IaXG .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-txaiI4IaXG .label-text {
  color: #4479d9;
}
.cid-txaiI4IaXG .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-txaiI4IaXG .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-txaiI4IaXG .card {
    padding: 0;
  }
}
.cid-txaiI4IaXG .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-txaiI4IaXG .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-txaiI4IaXG .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-txaiI4IaXG .card-text {
  color: #555555;
}
.cid-txaiI4IaXG .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-txaiI4IaXG .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-txaiI4IaXG .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-txaiI4IaXG .card-box {
    text-align: center;
  }
}
.cid-txaiI4IaXG .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaiI4IaXG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txaiINBWEi {
  padding-top: 0px;
  padding-bottom: 180px;
  background-color: #f0f2f5;
}
.cid-txaiINBWEi .carousel-item {
  padding: 0 10%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-txaiINBWEi .carousel-item.active,
.cid-txaiINBWEi .carousel-item-next,
.cid-txaiINBWEi .carousel-item-prev {
  display: flex;
}
.cid-txaiINBWEi .img-box {
  position: relative;
  width: fit-content;
  margin: auto;
}
.cid-txaiINBWEi .carousel-controls .mbr-iconfont {
  font-family: Moririse2 !important;
  font-size: 1rem;
  font-weight: 900;
  transition: opacity .3s;
}
.cid-txaiINBWEi .carousel-controls a {
  transition: all .3s;
  border-radius: 50%;
  border: none;
  background-color: transparent;
}
.cid-txaiINBWEi .carousel-controls a span {
  color: #103178 !important;
  font-size: 35px !important;
}
.cid-txaiINBWEi .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-txaiINBWEi .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-txaiINBWEi .carousel-controls .carousel-control-next,
.cid-txaiINBWEi .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-txaiINBWEi .carousel-controls .carousel-control-next {
  bottom: auto;
  top: 44%;
}
.cid-txaiINBWEi .carousel-controls .carousel-control-prev {
  bottom: auto;
  top: 44%;
}
.cid-txaiINBWEi .author-box {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-txaiINBWEi .face {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
  object-fit: cover;
}
.cid-txaiINBWEi .author {
  margin: auto 0;
}
.cid-txaiINBWEi .mbr-text {
  margin-bottom: 34px !important;
}
.cid-txaiINBWEi h3,
.cid-txaiINBWEi h4 {
  margin: 0;
  padding: 0;
}
.cid-txaiINBWEi .mbr-bottom {
  color: #767676;
}
.cid-txaiINBWEi .box {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px!important;
}
@media (max-width: 992px) {
  .cid-txaiINBWEi .carousel-controls a span {
    bottom: auto;
    top: 30%;
  }
}
@media (max-width: 767px) {
  .cid-txaiINBWEi .carousel-controls a span {
    bottom: auto;
    top: 20%;
  }
}
.cid-txaiINBWEi .carousel-indicators {
  bottom: -65px;
}
@media (max-width: 786px) {
  .cid-txaiINBWEi .carousel-indicators {
    bottom: -75px;
  }
}
.cid-txaiINBWEi .carousel-indicators li {
  margin-right: 31px;
  margin-left: 31px;
  opacity: 1;
  width: 6px;
  height: 6px;
  max-width: 6px;
  max-height: 6px;
  min-width: 6px;
  min-height: 6px;
  background: #000000;
  border: none;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cid-txaiINBWEi .carousel-indicators li:hover {
  opacity: 1 !important;
}
.cid-txaiINBWEi .carousel-indicators li svg {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  z-index: 1;
  fill: none;
  color: #000000;
  stroke: none;
  overflow: visible;
}
.cid-txaiINBWEi .carousel-indicators li svg circle {
  stroke-dasharray: 110;
  stroke-dashoffset: 110;
  stroke: #000000;
  stroke-width: 1;
  transition: all 0.6s cubic-bezier(0.43, 0.41, 0.36, 0.9);
  transform: rotate(-145deg);
  transform-origin: center;
}
.cid-txaiINBWEi .carousel-indicators li.active {
  background: #000000;
}
.cid-txaiINBWEi .carousel-indicators li.active circle {
  stroke-dashoffset: 0;
  transform: rotate(55deg);
}
.cid-txaiINBWEi .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-txaiINBWEi .mbr-text,
.cid-txaiINBWEi .mbr-section-btn {
  text-align: left;
}
.cid-txaiINBWEi .mbr-fallback-image.disabled {
  display: none;
}
.cid-txaiINBWEi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txaiINBWEi H3 {
  text-align: center;
}
.cid-tqtS4AL8oE {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #f0f2f5;
}
.cid-tqtS4AL8oE .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-tqtS4AL8oE .row {
    padding: 0 0.75rem;
  }
}
.cid-tqtS4AL8oE .text-container {
  margin-bottom: 10px;
  padding: 0 !important;
}
.cid-tqtS4AL8oE .label-text {
  color: #4479d9;
}
.cid-tqtS4AL8oE .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-tqtS4AL8oE .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tqtS4AL8oE .card {
    padding: 0;
  }
}
.cid-tqtS4AL8oE .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-tqtS4AL8oE .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-tqtS4AL8oE .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-tqtS4AL8oE .card-text {
  color: #555555;
}
.cid-tqtS4AL8oE .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-tqtS4AL8oE .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-tqtS4AL8oE .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tqtS4AL8oE .card-box {
    text-align: center;
  }
}
.cid-tqtS4AL8oE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqtS4AL8oE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqtS4AL8oE .mbr-section-title {
  color: #4479d9;
}
.cid-twqbp6ipG3 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f0f2f5;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-twqbp6ipG3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twqbp6ipG3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-twqbp6ipG3 .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-twqbp6ipG3 .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-twqbp6ipG3 .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-twqbp6ipG3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twqbp6ipG3 .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-twqbp6ipG3 .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-twqbp6ipG3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twqbp6ipG3 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-twqbp6ipG3 .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-twqbp6ipG3 .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-twqbp6ipG3 .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-twqbp6ipG3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twqbp6ipG3 .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-twqbp6ipG3 .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-twqbp6ipG3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twqbp6ipG3 .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-twqbp6ipG3 .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-twuTvoVGs6 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-twuTvoVGs6 .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-twuTvoVGs6 .row {
    padding: 0 0.75rem;
  }
}
.cid-twuTvoVGs6 .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-twuTvoVGs6 .label-text {
  color: #ffffff;
}
.cid-twuTvoVGs6 .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-twuTvoVGs6 .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-twuTvoVGs6 .card {
    padding: 0;
  }
}
.cid-twuTvoVGs6 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-twuTvoVGs6 .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-twuTvoVGs6 .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-twuTvoVGs6 .card-text {
  color: #555555;
}
.cid-twuTvoVGs6 .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-twuTvoVGs6 .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-twuTvoVGs6 .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-twuTvoVGs6 .card-box {
    text-align: center;
  }
}
.cid-twuTvoVGs6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-twuTvoVGs6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twuTvoVGs6 .mbr-section-title {
  color: #ffffff;
}
.cid-twuR5qFhy3 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-twuR5qFhy3 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #103178;
  margin-bottom: 2rem;
}
.cid-twuR5qFhy3 .card-wrapper {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.cid-twuR5qFhy3 .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-twuR5qFhy3 .card {
    max-width: 14.2%;
  }
}
.cid-twuR5qFhy3 .card-title,
.cid-twuR5qFhy3 .iconfont-wrapper {
  color: #ffffff;
}
.cid-tqxpp312HU {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #eff0f6;
}
.cid-tqxpp312HU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-tqxpp312HU .text-content .mbr-subtitle {
  color: #4479d9;
}
.cid-tqxpp312HU .text-content .mbr-section-title {
  color: #6592e6;
}
.cid-tqxpp312HU .text-content .mbr-text {
  color: #47b5ed;
}
.cid-tqxpp312HU .text-content .list-block {
  margin-top: 16px;
  padding-bottom: 16px;
}
.cid-tqxpp312HU .text-content .list-block .card-img {
  width: auto;
}
.cid-tqxpp312HU .text-content .list-block .card-img span {
  color: #4479d9;
  font-size: 1.5rem;
}
.cid-tqxpp312HU .text-content .list-block .list-item-title {
  color: #6592e6;
  transition: all .3s linear 0s;
}
.cid-tqxpp312HU .text-content .list-block .list-item-title:hover {
  color: #103178;
}
.cid-tqxpp312HU .text-content .list-block .list-item-text {
  padding-top: 10px;
  color: #47b5ed;
  margin-bottom: 0;
}
.cid-tqxpp312HU .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-tqxpp312HU .text-content .social {
  font-size: 1.2rem;
}
.cid-tqxpp312HU .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  transition: 0.3s all;
  color: #13287d;
}
.cid-tqxpp312HU .text-content .social span:hover {
  color: #279e64;
  transition: 0.3s all;
}
.cid-tqxpp312HU .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
}
.cid-tqxpp312HU .list-block {
  position: relative;
}
.cid-tqxpp312HU .list-block h4,
.cid-tqxpp312HU .list-block p {
  padding-left: 2.625rem;
}
.cid-tqxpp312HU .card-img {
  display: block;
}
.cid-tqxpp312HU input,
.cid-tqxpp312HU textarea {
  border-radius: 3px;
  min-height: 3rem;
  padding: 13px 20px !important;
  font-size: 13px;
  color: #40b0bf;
  height: 60px;
}
.cid-tqxpp312HU .form-control,
.cid-tqxpp312HU .field-input {
  padding: 13px 20px !important;
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tqxpp312HU .form-control:hover,
.cid-tqxpp312HU .field-input:hover,
.cid-tqxpp312HU .form-control:focus,
.cid-tqxpp312HU .field-input:focus {
  background-color: #f7f7f7;
  border-color: #279e64;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tqxpp312HU .form-control:focus,
.cid-tqxpp312HU .field-input:focus {
  box-shadow: 0 2px 9px 2px rgba(0, 0, 0, 0.15);
}
.cid-tqxpp312HU input::-webkit-input-placeholder,
.cid-tqxpp312HU textarea::-webkit-input-placeholder {
  color: #6d7a8c;
}
.cid-tqxpp312HU input:-moz-placeholder,
.cid-tqxpp312HU textarea:-moz-placeholder {
  color: #6d7a8c;
}
.cid-tqxpp312HU .jq-selectbox li,
.cid-tqxpp312HU .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tqxpp312HU .jq-selectbox li:hover,
.cid-tqxpp312HU .jq-selectbox li.selected {
  background-color: #f7f7f7;
  color: #000000;
}
.cid-tqxpp312HU .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-tqxpp312HU .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f7f7f7;
}
.cid-tqxpp312HU .mbr-form {
  max-width: 550px;
}
.cid-tqxpp312HU .mbr-form .content-title {
  color: #6592e6;
  margin-bottom: 20px;
}
.cid-tqxpp312HU .mbr-form .content-subtitle {
  color: #47b5ed;
}
.cid-tqxpp312HU .mbr-form textarea {
  min-height: 100px;
  height: 194px;
}
.cid-tqxpp312HU .mbr-form .btn {
  justify-content: space-between;
  border-radius: 30px;
  border-color: #6592e6;
  color: #6592e6;
  padding: 18px 42px;
  margin: 0 !important;
  margin-top: 7px !important;
}
.cid-tqxpp312HU .mbr-form .btn-success:hover {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #fff !important;
}
@media (max-width: 991px) {
  .cid-tqxpp312HU .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-tqxpp312HU .mbr-section-title,
  .cid-tqxpp312HU .content-title,
  .cid-tqxpp312HU .mbr-section-btn {
    text-align: left;
  }
}
.cid-tqxpp312HU .text-content .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-tqxpp312HU .text-content .mbr-subtitle {
  text-align: center;
}
.cid-tqxpp312HU .text-content .list-block .list-item-title {
  color: #103178;
}
.cid-tqxpp312HU H3 {
  color: #103178;
}
.cid-tqxpp312HU .mbr-form .content-title,
.cid-tqxpp312HU .social {
  color: #353535;
}
.cid-tqxpp312HU .form-check-input {
  min-height: 12px !important;
  padding: initial !important;
  height: 12px !important;
  width: 12px !important;
}
.cid-tqxnbYmxhF {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f0f2f5;
}
.cid-tqxnbYmxhF .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-tqxnbYmxhF .mbr-section-title {
  margin: 0;
  color: #13287d;
}
.cid-tqxnbYmxhF .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tqxnbYmxhF .card-img span {
  color: #279e64;
}
.cid-tqxnbYmxhF .row-item {
  margin-bottom: 2rem;
}
.cid-tqxnbYmxhF .row-item:hover .wrapper {
  background: linear-gradient(90deg, #279e64, #279e64);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-tqxnbYmxhF .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-tqxnbYmxhF .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-tqxnbYmxhF .wrapper {
  padding: 2.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tqxnbYmxhF .mbr-card-title,
.cid-tqxnbYmxhF .card-img {
  color: #4479d9;
}
.cid-tqxDp7tLlz {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #353535;
}
.cid-tqxDp7tLlz .listico {
  padding-right: 1rem;
  color: #dcdfe2;
  font-size: 0.3rem;
}
.cid-tqxDp7tLlz .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tqxDp7tLlz .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-tqxDp7tLlz .mbr-text {
  color: #444;
}
.cid-tqxDp7tLlz h5 {
  margin-bottom: 0;
}
.cid-tqxDp7tLlz .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tqxDp7tLlz .socicon {
  color: #9e9e9e;
  font-size: 0.6rem;
}
.cid-tqxDp7tLlz .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-tqxDp7tLlz .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-tqxDp7tLlz .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tqxDp7tLlz .social-list a:hover {
  opacity: .4;
}
.cid-tqxDp7tLlz .media-container-row > div {
  padding: 0px;
}
.cid-tqxDp7tLlz .text2 {
  color: #eeeff2;
  text-align: left;
}
.cid-tqxDp7tLlz .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-tqxDp7tLlz .group-title SPAN {
  color: #656565;
}
.cid-tqxDp7tLlz .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-tqxDp7tLlz .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tqxDp7tLlz h3 {
    margin-bottom: 10px;
  }
}
.cid-tqxDp7tLlz .links SPAN {
  color: #9e9e9e;
}
.cid-tqxDp7tLlz .links,
.cid-tqxDp7tLlz .navbar-brand {
  color: #eeeff2;
}
.cid-tqxDp7tLlz .links,
.cid-tqxDp7tLlz .social-list {
  text-align: left;
}
.cid-txasCoje2E.popup-builder {
  background-color: #ffffff;
}
.cid-txasCoje2E.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txasCoje2E.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txasCoje2E .modal-content,
.cid-txasCoje2E .modal-dialog {
  height: auto;
}
.cid-txasCoje2E .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txasCoje2E .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txasCoje2E .form-wrapper .mbr-form .form-group,
  .cid-txasCoje2E .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txasCoje2E .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txasCoje2E .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txasCoje2E .mbr-text {
  text-align: center;
}
.cid-txasCoje2E .pt-0 {
  padding-top: 0 !important;
}
.cid-txasCoje2E .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txasCoje2E .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txasCoje2E .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txasCoje2E .modal-open {
  overflow: hidden;
}
.cid-txasCoje2E .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txasCoje2E .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txasCoje2E .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txasCoje2E .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txasCoje2E .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txasCoje2E .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txasCoje2E .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txasCoje2E .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txasCoje2E .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txasCoje2E .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txasCoje2E .modal-backdrop.fade {
  opacity: 0;
}
.cid-txasCoje2E .modal-backdrop.show {
  opacity: .5;
}
.cid-txasCoje2E .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txasCoje2E .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txasCoje2E .modal-header {
    padding: 1rem;
  }
}
.cid-txasCoje2E .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txasCoje2E .modal-header .close svg {
  fill: #353535;
}
.cid-txasCoje2E .modal-header .close:hover {
  opacity: 1;
}
.cid-txasCoje2E .modal-header .close:focus {
  outline: none;
}
.cid-txasCoje2E .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-txasCoje2E .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txasCoje2E .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txasCoje2E .modal-body {
    padding: 1rem;
  }
}
.cid-txasCoje2E .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txasCoje2E .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txasCoje2E .modal-footer {
    padding: 1rem;
  }
}
.cid-txasCoje2E .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txasCoje2E .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txasCoje2E .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txasCoje2E .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txasCoje2E .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txasCoje2E .modal-lg,
  .cid-txasCoje2E .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txasCoje2E .modal-xl {
    max-width: 1140px;
  }
}
.cid-txasCoje2E .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txasCoje2E .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txasCoje2E .form-group {
  margin-bottom: 1rem;
}
.cid-txasCoje2E .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txasCoje2E .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txasCoje2E .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txasCoje2E .mbr-section-btn {
  margin: 0;
}
.cid-txasCoje2E .mbr-section-btn .btn {
  margin: 0;
}
.cid-txa8RzjcmJ .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-txa8RzjcmJ .navbar-fixed-top {
  padding-top: 0;
}
.cid-txa8RzjcmJ .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-txa8RzjcmJ .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-txa8RzjcmJ .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-txa8RzjcmJ .navbar-buttons {
  flex-wrap: wrap;
}
.cid-txa8RzjcmJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-txa8RzjcmJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-txa8RzjcmJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-txa8RzjcmJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-txa8RzjcmJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-txa8RzjcmJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-txa8RzjcmJ .menu-content-top {
  background: #ffffff;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-txa8RzjcmJ .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-txa8RzjcmJ .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-txa8RzjcmJ .dropdown-item,
.cid-txa8RzjcmJ .nav-link,
.cid-txa8RzjcmJ .brand-name {
  font-style: normal;
}
.cid-txa8RzjcmJ .dropdown-item:hover,
.cid-txa8RzjcmJ .nav-link:hover,
.cid-txa8RzjcmJ .brand-name:hover {
  color: #124ad6 !important;
}
.cid-txa8RzjcmJ .dropdown-menu {
  background-color: #ffffff;
}
.cid-txa8RzjcmJ .dropdown-item:active {
  background-color: #ffffff;
}
.cid-txa8RzjcmJ .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-txa8RzjcmJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-txa8RzjcmJ .nav-item {
  position: relative;
}
.cid-txa8RzjcmJ .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-txa8RzjcmJ .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-txa8RzjcmJ .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-txa8RzjcmJ .nav-link {
    line-height: 3;
  }
  .cid-txa8RzjcmJ .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #ffe161;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-txa8RzjcmJ .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-txa8RzjcmJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txa8RzjcmJ .content-text {
  margin-bottom: 0;
}
.cid-txa8RzjcmJ .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-txa8RzjcmJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-txa8RzjcmJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-txa8RzjcmJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-txa8RzjcmJ .navbar-nav .nav-item .link {
  margin: 0 10px !important;
}
.cid-txa8RzjcmJ .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txa8RzjcmJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-txa8RzjcmJ .content-right-side {
  text-align: center;
}
.cid-txa8RzjcmJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-txa8RzjcmJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-txa8RzjcmJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #4479d9;
}
.cid-txa8RzjcmJ .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-txa8RzjcmJ .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-txa8RzjcmJ .info-widget:first-child {
  margin-left: 0;
}
.cid-txa8RzjcmJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-txa8RzjcmJ .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-txa8RzjcmJ .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-txa8RzjcmJ .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-txa8RzjcmJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-txa8RzjcmJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-txa8RzjcmJ .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-txa8RzjcmJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-txa8RzjcmJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-txa8RzjcmJ .navbar-toggler {
    display: none;
  }
  .cid-txa8RzjcmJ .navbar-collapse {
    justify-content: center;
  }
}
.cid-txa8RzjcmJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-txa8RzjcmJ .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-txa8RzjcmJ .btn-sm {
  padding: 13px 29px;
}
.cid-txa8RzjcmJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-txa8RzjcmJ .btn::after {
  background-color: #47b5ed;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-txa8RzjcmJ .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-txa8RzjcmJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-txa8RzjcmJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-txa8RzjcmJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-txa8RzjcmJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-txa8RzjcmJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-txa8RzjcmJ .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-txa8RzjcmJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txa8RzjcmJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txa8RzjcmJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-txa8RzjcmJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-txa8RzjcmJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txa8RzjcmJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-txa8RzjcmJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txa8RzjcmJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-txa8RzjcmJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-txa8RzjcmJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-txa8RzjcmJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-txa8RzjcmJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-txa8RzjcmJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-txa8RzjcmJ button.navbar-toggler:focus {
  outline: none;
}
.cid-txa8RzjcmJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-txa8RzjcmJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txa8RzjcmJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txa8RzjcmJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txa8RzjcmJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txa8RzjcmJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txa8RzjcmJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txa8RzjcmJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txa8RzjcmJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txa8RzjcmJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txa8RzjcmJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txa8RzjcmJ .collapsed .btn {
  display: flex;
}
.cid-txa8RzjcmJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-txa8RzjcmJ .collapsed .navbar-collapse.collapsing,
.cid-txa8RzjcmJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-txa8RzjcmJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-txa8RzjcmJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-txa8RzjcmJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-txa8RzjcmJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-txa8RzjcmJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-txa8RzjcmJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-txa8RzjcmJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-txa8RzjcmJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-txa8RzjcmJ .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-txa8RzjcmJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-txa8RzjcmJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-txa8RzjcmJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-txa8RzjcmJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-txa8RzjcmJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-txa8RzjcmJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-txa8RzjcmJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-txa8RzjcmJ .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txa8RzjcmJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-txa8RzjcmJ .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-txa8RzjcmJ .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-txa8RzjcmJ .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-txa8RzjcmJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-txa8RzjcmJ .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-txa8RzjcmJ .navbar-collapse.collapsing,
  .cid-txa8RzjcmJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-txa8RzjcmJ .navbar-collapse.collapsing .navbar-nav,
  .cid-txa8RzjcmJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-txa8RzjcmJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-txa8RzjcmJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-txa8RzjcmJ .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-txa8RzjcmJ .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-txa8RzjcmJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-txa8RzjcmJ .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-txa8RzjcmJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-txa8RzjcmJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-txa8RzjcmJ img {
    height: 3.8rem !important;
  }
  .cid-txa8RzjcmJ .btn {
    display: flex;
  }
  .cid-txa8RzjcmJ button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-txa8RzjcmJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-txa8RzjcmJ .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-txa8RzjcmJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-txa8RzjcmJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-txa8RzjcmJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-txa8RzjcmJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-txa8RzjcmJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-txa8RzjcmJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-txa8RzjcmJ .navbar-toggler {
  position: relative;
}
.cid-txa8RzjcmJ .dropdown-item.active,
.cid-txa8RzjcmJ .dropdown-item:active {
  color: initial;
}
.cid-txa8RzjcmJ .widget-title {
  color: #47b5ed;
}
.cid-txa8RzjcmJ .widget-text {
  color: #47b5ed;
}
.cid-txa8RzjcmJ .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-txa8RzjcmJ .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #6592e6;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-txa8RzjcmJ .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-txa8RzjcmJ .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #279e64;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-txa8RzjcmJ .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-txa8RzjcmJ .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-txa8RzjcmJ .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-txa8RzjcmJ .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-txa8RzjcmJ .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-txa8RzjcmJ .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-txa8RzjcmJ .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-txa8RzjcmJ .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-txa8RzjcmJ .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-txa8RzjcmJ .menu-content-top,
  .cid-txa8RzjcmJ .menu-bottom {
    padding: 0 15px;
  }
  .cid-txa8RzjcmJ button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-txa8RzjcmJ .widget-title,
.cid-txa8RzjcmJ .widget-icon {
  color: #232323;
  text-align: center;
}
.cid-txa8RzZZuU {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/hvac-technician-working-capacitor-part-condensing-unit-1-1920x1280.jpeg");
}
.cid-txa8RzZZuU .main-container {
  width: 100%;
}
.cid-txa8RzZZuU .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa8RzZZuU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txa8RzZZuU .text-wrapper {
  margin: 0 160px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-txa8RzZZuU .text-wrapper {
    margin: 0 30px;
  }
}
.cid-txa8RzZZuU .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-txa8RzZZuU .mbr-section-title {
  color: #FFFFFF;
}
.cid-txa8RAl2TL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f0f2f5;
}
.cid-txa8RAl2TL .head_info {
  text-align: center;
  margin-bottom: 61px;
}
.cid-txa8RAl2TL .head_info .mbr-section-title {
  margin-bottom: 20px;
  color: #6592e6;
}
.cid-txa8RAl2TL .head_info .mbr-subtitle {
  color: #4479d9;
  margin-bottom: 10px;
}
.cid-txa8RAl2TL .head_info .mbr-section-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #47b5ed;
}
.cid-txa8RAl2TL .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  background-color: #ffffff;
  text-align: center;
  border-radius: 8px;
  padding: 42px 15px 55px;
}
.cid-txa8RAl2TL .plan .plan-title {
  color: #6592e6;
  margin-bottom: 32px;
}
.cid-txa8RAl2TL .plan .icon_box {
  display: block;
  text-align: center;
  padding-bottom: 17.5px;
}
.cid-txa8RAl2TL .plan .icon_box .ico1 {
  font-size: 79.5px;
  display: block;
  position: relative;
  color: #4479d9;
}
.cid-txa8RAl2TL .plan .plan-price .mbr-text {
  color: #6592e6;
  margin-bottom: 0;
}
.cid-txa8RAl2TL .plan .plan-list {
  margin-bottom: 15px;
}
.cid-txa8RAl2TL .plan .plan-list .list-group {
  color: #47b5ed;
}
.cid-txa8RAl2TL .plan .plan-list .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 5px 0;
}
.cid-txa8RAl2TL .plan .plan-list .list-group-item:before {
  color: #4479d9;
  display: inline-block;
  content: "✓";
  text-align: center;
  transition: all 0.2s;
  width: 25px;
  height: 25px;
}
.cid-txa8RAl2TL .plan .plan-list .list-group-item:last-child {
  border-radius: 8px;
}
.cid-txa8RAl2TL .plan .mbr-section-btn {
  margin-top: 17.5px;
  margin-bottom: 42px;
}
.cid-txa8RAl2TL .plan .mbr-section-btn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
}
.cid-txa8RAl2TL .plan .mbr-section-btn .btn::after {
  background-color: #656565;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-txa8RAl2TL .plan .mbr-section-btn .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-txa8RAl2TL .plan .mbr-section-btn .btn-primary:hover {
  background-color: #28303f !important;
  color: #40b0bf !important;
}
.cid-txa8RAl2TL .plan:hover .mbr-iconfont {
  -webkit-animation-name: pulse-shrink;
  animation-name: pulse-shrink;
  -webkit-animation-duration: .35s;
  animation-duration: .35s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@-webkit-keyframes pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
@keyframes pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
.cid-txa8RAl2TL .head_info .mbr-subtitle {
  color: #232323;
}
.cid-txa8RAl2TL .head_info .mbr-section-title {
  color: #4479d9;
}
.cid-txa8RAl2TL .plan .plan-title {
  color: #4479d9;
}
.cid-txa8RAl2TL .plan .plan-price .mbr-text {
  color: #4479d9;
}
.cid-txa8RAP3mK {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/living-room-interior-wall-mockup-warm-tones-with-leather-sofa-which-is-kitchen-3d-rendering.jpg");
}
.cid-txa8RAP3mK .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-txa8RAP3mK a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-txa8RAP3mK .mbr-section-btn {
  margin: 0;
}
.cid-txa8RAP3mK .form-control {
  box-shadow: none;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #353535;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-txa8RAP3mK .form-control:focus,
.cid-txa8RAP3mK .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-txa8RAP3mK .form-group {
  margin-bottom: 1rem;
}
.cid-txa8RAP3mK input::-webkit-input-placeholder,
.cid-txa8RAP3mK textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-txa8RAP3mK input:-moz-placeholder,
.cid-txa8RAP3mK textarea:-moz-placeholder {
  color: #353535;
}
.cid-txa8RAP3mK .jq-selectbox li,
.cid-txa8RAP3mK .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-txa8RAP3mK .jq-selectbox li:hover,
.cid-txa8RAP3mK .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-txa8RAP3mK .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-txa8RAP3mK .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-txa8RAP3mK .form-group,
.cid-txa8RAP3mK .mbr-section-btn {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
@media (min-width: 992px) {
  .cid-txa8RAP3mK .col-auto.mbr-section-btn .btn {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .cid-txa8RAP3mK .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-txa8RAP3mK .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 499px) {
  .cid-txa8RAP3mK .form-block {
    padding: 1rem;
  }
}
.cid-txa8RAP3mK H4 {
  color: #ffffff;
}
.cid-txa8RAP3mK P {
  color: #ffffff;
}
.cid-txa8RAP3mK LABEL {
  color: #f0f2f5;
}
.cid-txa8RBfAvQ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f0f2f5;
}
@media (max-width: 767px) {
  .cid-txa8RBfAvQ .row {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-txa8RBfAvQ .col-text {
    padding: 0 0 0 0;
  }
}
.cid-txa8RBfAvQ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txa8RBfAvQ .text-wrapper {
    text-align: center !important;
    padding-bottom: 54px;
  }
}
.cid-txa8RBfAvQ .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #4479d9;
}
@media (max-width: 767px) {
  .cid-txa8RBfAvQ .label-text {
    text-align: center !important;
  }
}
.cid-txa8RBfAvQ .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-txa8RBfAvQ .mbr-section-title {
    text-align: center !important;
  }
}
.cid-txa8RBfAvQ .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-txa8RBfAvQ .mbr-text {
    text-align: center !important;
  }
}
.cid-txa8RBfAvQ .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-txa8RBfAvQ .btn-container {
  width: 100%;
  margin-top: auto;
}
.cid-txa8RBfAvQ .mbr-section-btn .btn {
  padding: 0;
}
.cid-txa8RBfAvQ .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-txa8RBfAvQ .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-txa8RBfAvQ .col-cards {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cid-txa8RBfAvQ .col-cards {
    padding: 0;
    padding-left: 1.8%;
  }
}
@media (min-width: 992px) {
  .cid-txa8RBfAvQ .col-cards {
    padding-left: 5%;
  }
}
.cid-txa8RBfAvQ .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  width: 100%;
}
.cid-txa8RBfAvQ .cards-wrap:hover {
  background-color: #ffffff;
}
.cid-txa8RBfAvQ .card {
  padding: 30px;
  background-color: #f0f2f5;
  transition: 0.4s all;
  border-radius: 0;
}
.cid-txa8RBfAvQ .card:hover {
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-txa8RBfAvQ .card:hover {
    transform: translate(0px, -10px);
  }
}
.cid-txa8RBfAvQ .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-txa8RBfAvQ .img-container {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-txa8RBfAvQ .img-container {
    display: flex;
    justify-content: center;
  }
}
.cid-txa8RBfAvQ .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  height: 93px;
  position: relative;
}
.cid-txa8RBfAvQ .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txa8RBfAvQ .img-bg {
  background-color: #ffed27;
  min-width: 75%;
  height: 75%;
  border-radius: 50%;
  position: absolute;
}
.cid-txa8RBfAvQ .card-title {
  color: #ffed27;
  margin-bottom: 8px;
}
.cid-txa8RBfAvQ .card-text {
  color: #222222;
  margin-bottom: 0;
  text-align: left;
}
.cid-txa8RBIcSQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/cozy-study-room-modern-apartment-1920x1280.jpg");
}
.cid-txa8RBIcSQ .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-txa8RBIcSQ .mbr-section-title {
  margin: 0;
  color: #ffffff;
}
.cid-txa8RBIcSQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-txa8RBIcSQ .card-img span {
  color: #4479d9;
}
.cid-txa8RBIcSQ .row-item {
  margin-bottom: 2rem;
}
.cid-txa8RBIcSQ .row-item:hover .wrapper {
  background: linear-gradient(90deg, #4479d9, #4479d9);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-txa8RBIcSQ .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-txa8RBIcSQ .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-txa8RBIcSQ .wrapper {
  padding: 2.5rem 1rem;
  background: #f0f2f5;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-txa8RBIcSQ .mbr-card-title,
.cid-txa8RBIcSQ .card-img {
  color: #353535;
}
.cid-txa8RCb64v {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f0f2f5;
}
.cid-txa8RCb64v .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-txa8RCb64v .row {
    padding: 0 0.75rem;
  }
}
.cid-txa8RCb64v .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-txa8RCb64v .label-text {
  color: #4479d9;
}
.cid-txa8RCb64v .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-txa8RCb64v .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-txa8RCb64v .card {
    padding: 0;
  }
}
.cid-txa8RCb64v .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-txa8RCb64v .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-txa8RCb64v .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-txa8RCb64v .card-text {
  color: #555555;
}
.cid-txa8RCb64v .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-txa8RCb64v .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-txa8RCb64v .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-txa8RCb64v .card-box {
    text-align: center;
  }
}
.cid-txa8RCb64v .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa8RCb64v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txa8RCyArp {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f0f2f5;
}
.cid-txa8RCyArp .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa8RCyArp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txa8RCyArp .mbr-text {
  color: #767676;
}
.cid-txa8RCyArp .mbr-section-subtitle {
  color: #767676;
}
.cid-txa8RCyArp .title .num {
  width: 100%;
  display: block;
}
.cid-txa8RCyArp .title .card-title {
  z-index: 1;
}
.cid-txa8RCyArp .num {
  color: #6592e6;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-txa8RCyArp * {
    text-align: center !important;
  }
  .cid-txa8RCyArp .content-column {
    margin-bottom: 2rem;
  }
}
.cid-txa8RCyArp .card-text {
  color: #000000;
  text-align: left;
}
.cid-txa8RCyArp .card-title,
.cid-txa8RCyArp .card-img {
  text-align: left;
  color: #000000;
}
.cid-txa8RDaW5G {
  background-color: #4479d9;
}
@media (min-width: 768px) {
  .cid-txa8RDaW5G {
    background-image: url("../../../assets/images/repairman-doing-air-conditioner-service-1000x667.jpg");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 50% auto;
  }
}
.cid-txa8RDaW5G .row {
  align-items: center;
}
.cid-txa8RDaW5G .image-wrapper {
  padding: 1rem;
}
.cid-txa8RDaW5G .col-text {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.cid-txa8RDaW5G .col-text .radial-svg {
  display: none;
}
@media (min-width: 992px) {
  .cid-txa8RDaW5G .col-text .radial-svg {
    display: block;
    position: absolute;
    top: 0;
    right: -90px;
    bottom: 0;
    height: 100%;
    width: 200px;
    z-index: 1;
  }
  .cid-txa8RDaW5G .col-text .radial-svg path {
    fill: #4479d9;
  }
}
.cid-txa8RDaW5G .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .cid-txa8RDaW5G .text-wrapper {
    max-width: 400px;
  }
}
.cid-txa8RDaW5G .label-text {
  width: 100%;
  color: #ffffff;
}
.cid-txa8RDaW5G .mbr-section-title {
  margin-bottom: 1.425rem;
  width: 100%;
  color: #ffffff;
}
.cid-txa8RDaW5G .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 12px;
}
.cid-txa8RDaW5G .btn-container {
  width: 100%;
}
.cid-txa8RDaW5G .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-txa8RDaW5G .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-txa8RDaW5G .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-txa8RDaW5G .btn-white-outline {
  border: 1px solid currentColor;
}
.cid-txa8RDaW5G .btn-white-outline:hover {
  color: #6592e6 !important;
  background: #ffffff !important;
}
.cid-txa8RDaW5G .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa8RDaW5G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txanFAFj3s {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f0f2f5;
}
.cid-txanFAFj3s .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-txanFAFj3s .row {
    padding: 0 0.75rem;
  }
}
.cid-txanFAFj3s .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-txanFAFj3s .label-text {
  color: #4479d9;
}
.cid-txanFAFj3s .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-txanFAFj3s .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-txanFAFj3s .card {
    padding: 0;
  }
}
.cid-txanFAFj3s .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-txanFAFj3s .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-txanFAFj3s .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-txanFAFj3s .card-text {
  color: #555555;
}
.cid-txanFAFj3s .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-txanFAFj3s .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-txanFAFj3s .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-txanFAFj3s .card-box {
    text-align: center;
  }
}
.cid-txanFAFj3s .mbr-fallback-image.disabled {
  display: none;
}
.cid-txanFAFj3s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txanFAFj3s .mbr-section-title {
  color: #4479d9;
}
.cid-txanGdjGlz {
  padding-top: 0px;
  padding-bottom: 180px;
  background-color: #f0f2f5;
}
.cid-txanGdjGlz .carousel-item {
  padding: 0 10%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-txanGdjGlz .carousel-item.active,
.cid-txanGdjGlz .carousel-item-next,
.cid-txanGdjGlz .carousel-item-prev {
  display: flex;
}
.cid-txanGdjGlz .img-box {
  position: relative;
  width: fit-content;
  margin: auto;
}
.cid-txanGdjGlz .carousel-controls .mbr-iconfont {
  font-family: Moririse2 !important;
  font-size: 1rem;
  font-weight: 900;
  transition: opacity .3s;
}
.cid-txanGdjGlz .carousel-controls a {
  transition: all .3s;
  border-radius: 50%;
  border: none;
  background-color: transparent;
}
.cid-txanGdjGlz .carousel-controls a span {
  color: #103178 !important;
  font-size: 35px !important;
}
.cid-txanGdjGlz .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-txanGdjGlz .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-txanGdjGlz .carousel-controls .carousel-control-next,
.cid-txanGdjGlz .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-txanGdjGlz .carousel-controls .carousel-control-next {
  bottom: auto;
  top: 44%;
}
.cid-txanGdjGlz .carousel-controls .carousel-control-prev {
  bottom: auto;
  top: 44%;
}
.cid-txanGdjGlz .author-box {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-txanGdjGlz .face {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
  object-fit: cover;
}
.cid-txanGdjGlz .author {
  margin: auto 0;
}
.cid-txanGdjGlz .mbr-text {
  margin-bottom: 34px !important;
}
.cid-txanGdjGlz h3,
.cid-txanGdjGlz h4 {
  margin: 0;
  padding: 0;
}
.cid-txanGdjGlz .mbr-bottom {
  color: #767676;
}
.cid-txanGdjGlz .box {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px!important;
}
@media (max-width: 992px) {
  .cid-txanGdjGlz .carousel-controls a span {
    bottom: auto;
    top: 30%;
  }
}
@media (max-width: 767px) {
  .cid-txanGdjGlz .carousel-controls a span {
    bottom: auto;
    top: 20%;
  }
}
.cid-txanGdjGlz .carousel-indicators {
  bottom: -65px;
}
@media (max-width: 786px) {
  .cid-txanGdjGlz .carousel-indicators {
    bottom: -75px;
  }
}
.cid-txanGdjGlz .carousel-indicators li {
  margin-right: 31px;
  margin-left: 31px;
  opacity: 1;
  width: 6px;
  height: 6px;
  max-width: 6px;
  max-height: 6px;
  min-width: 6px;
  min-height: 6px;
  background: #000000;
  border: none;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cid-txanGdjGlz .carousel-indicators li:hover {
  opacity: 1 !important;
}
.cid-txanGdjGlz .carousel-indicators li svg {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  z-index: 1;
  fill: none;
  color: #000000;
  stroke: none;
  overflow: visible;
}
.cid-txanGdjGlz .carousel-indicators li svg circle {
  stroke-dasharray: 110;
  stroke-dashoffset: 110;
  stroke: #000000;
  stroke-width: 1;
  transition: all 0.6s cubic-bezier(0.43, 0.41, 0.36, 0.9);
  transform: rotate(-145deg);
  transform-origin: center;
}
.cid-txanGdjGlz .carousel-indicators li.active {
  background: #000000;
}
.cid-txanGdjGlz .carousel-indicators li.active circle {
  stroke-dashoffset: 0;
  transform: rotate(55deg);
}
.cid-txanGdjGlz .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-txanGdjGlz .mbr-text,
.cid-txanGdjGlz .mbr-section-btn {
  text-align: left;
}
.cid-txanGdjGlz .mbr-fallback-image.disabled {
  display: none;
}
.cid-txanGdjGlz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txanGdjGlz H3 {
  text-align: center;
}
.cid-txa8REfG7H {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #f0f2f5;
}
.cid-txa8REfG7H .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-txa8REfG7H .row {
    padding: 0 0.75rem;
  }
}
.cid-txa8REfG7H .text-container {
  margin-bottom: 10px;
  padding: 0 !important;
}
.cid-txa8REfG7H .label-text {
  color: #4479d9;
}
.cid-txa8REfG7H .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-txa8REfG7H .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-txa8REfG7H .card {
    padding: 0;
  }
}
.cid-txa8REfG7H .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-txa8REfG7H .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-txa8REfG7H .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-txa8REfG7H .card-text {
  color: #555555;
}
.cid-txa8REfG7H .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-txa8REfG7H .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-txa8REfG7H .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-txa8REfG7H .card-box {
    text-align: center;
  }
}
.cid-txa8REfG7H .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa8REfG7H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txa8REfG7H .mbr-section-title {
  color: #4479d9;
}
.cid-txa8REHgHW {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f0f2f5;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-txa8REHgHW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txa8REHgHW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-txa8REHgHW .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-txa8REHgHW .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-txa8REHgHW .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-txa8REHgHW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txa8REHgHW .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-txa8REHgHW .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-txa8REHgHW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-txa8REHgHW .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-txa8REHgHW .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-txa8REHgHW .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-txa8REHgHW .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-txa8REHgHW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txa8REHgHW .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-txa8REHgHW .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-txa8REHgHW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-txa8REHgHW .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-txa8REHgHW .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-txa8RFh6oC {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-txa8RFh6oC .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-txa8RFh6oC .row {
    padding: 0 0.75rem;
  }
}
.cid-txa8RFh6oC .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-txa8RFh6oC .label-text {
  color: #ffffff;
}
.cid-txa8RFh6oC .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-txa8RFh6oC .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-txa8RFh6oC .card {
    padding: 0;
  }
}
.cid-txa8RFh6oC .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-txa8RFh6oC .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-txa8RFh6oC .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-txa8RFh6oC .card-text {
  color: #555555;
}
.cid-txa8RFh6oC .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-txa8RFh6oC .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-txa8RFh6oC .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-txa8RFh6oC .card-box {
    text-align: center;
  }
}
.cid-txa8RFh6oC .mbr-fallback-image.disabled {
  display: none;
}
.cid-txa8RFh6oC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txa8RFh6oC .mbr-section-title {
  color: #ffffff;
}
.cid-txa8RFJ7ua {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-txa8RFJ7ua .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #103178;
  margin-bottom: 2rem;
}
.cid-txa8RFJ7ua .card-wrapper {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.cid-txa8RFJ7ua .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-txa8RFJ7ua .card {
    max-width: 14.2%;
  }
}
.cid-txa8RFJ7ua .card-title,
.cid-txa8RFJ7ua .iconfont-wrapper {
  color: #ffffff;
}
.cid-txa8RGl6Wo {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #eff0f6;
}
.cid-txa8RGl6Wo .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-txa8RGl6Wo .text-content .mbr-subtitle {
  color: #4479d9;
}
.cid-txa8RGl6Wo .text-content .mbr-section-title {
  color: #6592e6;
}
.cid-txa8RGl6Wo .text-content .mbr-text {
  color: #47b5ed;
}
.cid-txa8RGl6Wo .text-content .list-block {
  margin-top: 16px;
  padding-bottom: 16px;
}
.cid-txa8RGl6Wo .text-content .list-block .card-img {
  width: auto;
}
.cid-txa8RGl6Wo .text-content .list-block .card-img span {
  color: #4479d9;
  font-size: 1.5rem;
}
.cid-txa8RGl6Wo .text-content .list-block .list-item-title {
  color: #6592e6;
  transition: all .3s linear 0s;
}
.cid-txa8RGl6Wo .text-content .list-block .list-item-title:hover {
  color: #103178;
}
.cid-txa8RGl6Wo .text-content .list-block .list-item-text {
  padding-top: 10px;
  color: #47b5ed;
  margin-bottom: 0;
}
.cid-txa8RGl6Wo .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-txa8RGl6Wo .text-content .social {
  font-size: 1.2rem;
}
.cid-txa8RGl6Wo .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  transition: 0.3s all;
  color: #13287d;
}
.cid-txa8RGl6Wo .text-content .social span:hover {
  color: #279e64;
  transition: 0.3s all;
}
.cid-txa8RGl6Wo .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
}
.cid-txa8RGl6Wo .list-block {
  position: relative;
}
.cid-txa8RGl6Wo .list-block h4,
.cid-txa8RGl6Wo .list-block p {
  padding-left: 2.625rem;
}
.cid-txa8RGl6Wo .card-img {
  display: block;
}
.cid-txa8RGl6Wo input,
.cid-txa8RGl6Wo textarea {
  border-radius: 3px;
  min-height: 3rem;
  padding: 13px 20px !important;
  font-size: 13px;
  color: #40b0bf;
  height: 60px;
}
.cid-txa8RGl6Wo .form-control,
.cid-txa8RGl6Wo .field-input {
  padding: 13px 20px !important;
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-txa8RGl6Wo .form-control:hover,
.cid-txa8RGl6Wo .field-input:hover,
.cid-txa8RGl6Wo .form-control:focus,
.cid-txa8RGl6Wo .field-input:focus {
  background-color: #f7f7f7;
  border-color: #279e64;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-txa8RGl6Wo .form-control:focus,
.cid-txa8RGl6Wo .field-input:focus {
  box-shadow: 0 2px 9px 2px rgba(0, 0, 0, 0.15);
}
.cid-txa8RGl6Wo input::-webkit-input-placeholder,
.cid-txa8RGl6Wo textarea::-webkit-input-placeholder {
  color: #6d7a8c;
}
.cid-txa8RGl6Wo input:-moz-placeholder,
.cid-txa8RGl6Wo textarea:-moz-placeholder {
  color: #6d7a8c;
}
.cid-txa8RGl6Wo .jq-selectbox li,
.cid-txa8RGl6Wo .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-txa8RGl6Wo .jq-selectbox li:hover,
.cid-txa8RGl6Wo .jq-selectbox li.selected {
  background-color: #f7f7f7;
  color: #000000;
}
.cid-txa8RGl6Wo .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-txa8RGl6Wo .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f7f7f7;
}
.cid-txa8RGl6Wo .mbr-form {
  max-width: 550px;
}
.cid-txa8RGl6Wo .mbr-form .content-title {
  color: #6592e6;
  margin-bottom: 20px;
}
.cid-txa8RGl6Wo .mbr-form .content-subtitle {
  color: #47b5ed;
}
.cid-txa8RGl6Wo .mbr-form textarea {
  min-height: 100px;
  height: 194px;
}
.cid-txa8RGl6Wo .mbr-form .btn {
  justify-content: space-between;
  border-radius: 30px;
  border-color: #6592e6;
  color: #6592e6;
  padding: 18px 42px;
  margin: 0 !important;
  margin-top: 7px !important;
}
.cid-txa8RGl6Wo .mbr-form .btn-success:hover {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #fff !important;
}
@media (max-width: 991px) {
  .cid-txa8RGl6Wo .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-txa8RGl6Wo .mbr-section-title,
  .cid-txa8RGl6Wo .content-title,
  .cid-txa8RGl6Wo .mbr-section-btn {
    text-align: left;
  }
}
.cid-txa8RGl6Wo .text-content .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-txa8RGl6Wo .text-content .mbr-subtitle {
  text-align: center;
}
.cid-txa8RGl6Wo .text-content .list-block .list-item-title {
  color: #103178;
}
.cid-txa8RGl6Wo H3 {
  color: #103178;
}
.cid-txa8RGl6Wo .mbr-form .content-title,
.cid-txa8RGl6Wo .social {
  color: #353535;
}
.cid-txa8RGl6Wo .form-check-input {
  min-height: 12px !important;
  padding: initial !important;
  height: 12px !important;
  width: 12px !important;
}
.cid-txa8RH3aaU {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f0f2f5;
}
.cid-txa8RH3aaU .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-txa8RH3aaU .mbr-section-title {
  margin: 0;
  color: #13287d;
}
.cid-txa8RH3aaU .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-txa8RH3aaU .card-img span {
  color: #279e64;
}
.cid-txa8RH3aaU .row-item {
  margin-bottom: 2rem;
}
.cid-txa8RH3aaU .row-item:hover .wrapper {
  background: linear-gradient(90deg, #279e64, #279e64);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-txa8RH3aaU .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-txa8RH3aaU .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-txa8RH3aaU .wrapper {
  padding: 2.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-txa8RH3aaU .mbr-card-title,
.cid-txa8RH3aaU .card-img {
  color: #4479d9;
}
.cid-txatxA1f4Z {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #353535;
}
.cid-txatxA1f4Z .listico {
  padding-right: 1rem;
  color: #dcdfe2;
  font-size: 0.3rem;
}
.cid-txatxA1f4Z .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-txatxA1f4Z .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-txatxA1f4Z .mbr-text {
  color: #444;
}
.cid-txatxA1f4Z h5 {
  margin-bottom: 0;
}
.cid-txatxA1f4Z .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-txatxA1f4Z .socicon {
  color: #9e9e9e;
  font-size: 0.6rem;
}
.cid-txatxA1f4Z .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-txatxA1f4Z .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-txatxA1f4Z .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txatxA1f4Z .social-list a:hover {
  opacity: .4;
}
.cid-txatxA1f4Z .media-container-row > div {
  padding: 0px;
}
.cid-txatxA1f4Z .text2 {
  color: #eeeff2;
  text-align: left;
}
.cid-txatxA1f4Z .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-txatxA1f4Z .group-title SPAN {
  color: #656565;
}
.cid-txatxA1f4Z .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-txatxA1f4Z .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-txatxA1f4Z h3 {
    margin-bottom: 10px;
  }
}
.cid-txatxA1f4Z .links SPAN {
  color: #9e9e9e;
}
.cid-txatxA1f4Z .links,
.cid-txatxA1f4Z .navbar-brand {
  color: #eeeff2;
}
.cid-txatxA1f4Z .links,
.cid-txatxA1f4Z .social-list {
  text-align: left;
}
.cid-txa8RIpBbi.popup-builder {
  background-color: #ffffff;
}
.cid-txa8RIpBbi.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txa8RIpBbi.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txa8RIpBbi .modal-content,
.cid-txa8RIpBbi .modal-dialog {
  height: auto;
}
.cid-txa8RIpBbi .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txa8RIpBbi .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txa8RIpBbi .form-wrapper .mbr-form .form-group,
  .cid-txa8RIpBbi .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txa8RIpBbi .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txa8RIpBbi .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txa8RIpBbi .mbr-text {
  text-align: center;
}
.cid-txa8RIpBbi .pt-0 {
  padding-top: 0 !important;
}
.cid-txa8RIpBbi .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txa8RIpBbi .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txa8RIpBbi .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txa8RIpBbi .modal-open {
  overflow: hidden;
}
.cid-txa8RIpBbi .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txa8RIpBbi .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txa8RIpBbi .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txa8RIpBbi .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txa8RIpBbi .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txa8RIpBbi .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txa8RIpBbi .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txa8RIpBbi .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txa8RIpBbi .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txa8RIpBbi .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txa8RIpBbi .modal-backdrop.fade {
  opacity: 0;
}
.cid-txa8RIpBbi .modal-backdrop.show {
  opacity: .5;
}
.cid-txa8RIpBbi .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txa8RIpBbi .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txa8RIpBbi .modal-header {
    padding: 1rem;
  }
}
.cid-txa8RIpBbi .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txa8RIpBbi .modal-header .close svg {
  fill: #353535;
}
.cid-txa8RIpBbi .modal-header .close:hover {
  opacity: 1;
}
.cid-txa8RIpBbi .modal-header .close:focus {
  outline: none;
}
.cid-txa8RIpBbi .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-txa8RIpBbi .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txa8RIpBbi .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txa8RIpBbi .modal-body {
    padding: 1rem;
  }
}
.cid-txa8RIpBbi .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txa8RIpBbi .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txa8RIpBbi .modal-footer {
    padding: 1rem;
  }
}
.cid-txa8RIpBbi .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txa8RIpBbi .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txa8RIpBbi .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txa8RIpBbi .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txa8RIpBbi .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txa8RIpBbi .modal-lg,
  .cid-txa8RIpBbi .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txa8RIpBbi .modal-xl {
    max-width: 1140px;
  }
}
.cid-txa8RIpBbi .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txa8RIpBbi .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txa8RIpBbi .form-group {
  margin-bottom: 1rem;
}
.cid-txa8RIpBbi .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txa8RIpBbi .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txa8RIpBbi .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txa8RIpBbi .mbr-section-btn {
  margin: 0;
}
.cid-txa8RIpBbi .mbr-section-btn .btn {
  margin: 0;
}
.cid-txL4gExe4z.popup-builder {
  background-color: #ffffff;
}
.cid-txL4gExe4z.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txL4gExe4z.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txL4gExe4z .modal-content,
.cid-txL4gExe4z .modal-dialog {
  height: auto;
}
.cid-txL4gExe4z .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txL4gExe4z .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txL4gExe4z .form-wrapper .mbr-form .form-group,
  .cid-txL4gExe4z .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txL4gExe4z .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txL4gExe4z .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txL4gExe4z .mbr-text {
  text-align: center;
}
.cid-txL4gExe4z .pt-0 {
  padding-top: 0 !important;
}
.cid-txL4gExe4z .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txL4gExe4z .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txL4gExe4z .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txL4gExe4z .modal-open {
  overflow: hidden;
}
.cid-txL4gExe4z .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txL4gExe4z .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txL4gExe4z .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txL4gExe4z .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txL4gExe4z .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txL4gExe4z .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txL4gExe4z .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txL4gExe4z .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txL4gExe4z .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txL4gExe4z .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txL4gExe4z .modal-backdrop.fade {
  opacity: 0;
}
.cid-txL4gExe4z .modal-backdrop.show {
  opacity: .5;
}
.cid-txL4gExe4z .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txL4gExe4z .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txL4gExe4z .modal-header {
    padding: 1rem;
  }
}
.cid-txL4gExe4z .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txL4gExe4z .modal-header .close svg {
  fill: #353535;
}
.cid-txL4gExe4z .modal-header .close:hover {
  opacity: 1;
}
.cid-txL4gExe4z .modal-header .close:focus {
  outline: none;
}
.cid-txL4gExe4z .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-txL4gExe4z .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txL4gExe4z .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txL4gExe4z .modal-body {
    padding: 1rem;
  }
}
.cid-txL4gExe4z .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txL4gExe4z .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txL4gExe4z .modal-footer {
    padding: 1rem;
  }
}
.cid-txL4gExe4z .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txL4gExe4z .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txL4gExe4z .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txL4gExe4z .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txL4gExe4z .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txL4gExe4z .modal-lg,
  .cid-txL4gExe4z .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txL4gExe4z .modal-xl {
    max-width: 1140px;
  }
}
.cid-txL4gExe4z .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txL4gExe4z .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txL4gExe4z .form-group {
  margin-bottom: 1rem;
}
.cid-txL4gExe4z .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txL4gExe4z .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txL4gExe4z .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txL4gExe4z .mbr-section-btn {
  margin: 0;
}
.cid-txL4gExe4z .mbr-section-btn .btn {
  margin: 0;
}
.cid-twA6PBAHAi .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-twA6PBAHAi .navbar-fixed-top {
  padding-top: 0;
}
.cid-twA6PBAHAi .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-twA6PBAHAi .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-twA6PBAHAi .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-twA6PBAHAi .navbar-buttons {
  flex-wrap: wrap;
}
.cid-twA6PBAHAi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-twA6PBAHAi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-twA6PBAHAi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-twA6PBAHAi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-twA6PBAHAi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-twA6PBAHAi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-twA6PBAHAi .menu-content-top {
  background: #ffffff;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-twA6PBAHAi .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-twA6PBAHAi .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-twA6PBAHAi .dropdown-item,
.cid-twA6PBAHAi .nav-link,
.cid-twA6PBAHAi .brand-name {
  font-style: normal;
}
.cid-twA6PBAHAi .dropdown-item:hover,
.cid-twA6PBAHAi .nav-link:hover,
.cid-twA6PBAHAi .brand-name:hover {
  color: #124ad6 !important;
}
.cid-twA6PBAHAi .dropdown-menu {
  background-color: #ffffff;
}
.cid-twA6PBAHAi .dropdown-item:active {
  background-color: #ffffff;
}
.cid-twA6PBAHAi .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-twA6PBAHAi .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-twA6PBAHAi .nav-item {
  position: relative;
}
.cid-twA6PBAHAi .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-twA6PBAHAi .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-twA6PBAHAi .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-twA6PBAHAi .nav-link {
    line-height: 3;
  }
  .cid-twA6PBAHAi .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #ffe161;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-twA6PBAHAi .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-twA6PBAHAi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twA6PBAHAi .content-text {
  margin-bottom: 0;
}
.cid-twA6PBAHAi .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-twA6PBAHAi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-twA6PBAHAi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-twA6PBAHAi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-twA6PBAHAi .navbar-nav .nav-item .link {
  margin: 0 10px !important;
}
.cid-twA6PBAHAi .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-twA6PBAHAi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-twA6PBAHAi .content-right-side {
  text-align: center;
}
.cid-twA6PBAHAi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-twA6PBAHAi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-twA6PBAHAi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #4479d9;
}
.cid-twA6PBAHAi .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-twA6PBAHAi .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-twA6PBAHAi .info-widget:first-child {
  margin-left: 0;
}
.cid-twA6PBAHAi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-twA6PBAHAi .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-twA6PBAHAi .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-twA6PBAHAi .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-twA6PBAHAi .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-twA6PBAHAi .navbar {
    display: block;
    padding: 0;
  }
  .cid-twA6PBAHAi .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-twA6PBAHAi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-twA6PBAHAi .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-twA6PBAHAi .navbar-toggler {
    display: none;
  }
  .cid-twA6PBAHAi .navbar-collapse {
    justify-content: center;
  }
}
.cid-twA6PBAHAi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-twA6PBAHAi .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-twA6PBAHAi .btn-sm {
  padding: 13px 29px;
}
.cid-twA6PBAHAi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-twA6PBAHAi .btn::after {
  background-color: #47b5ed;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-twA6PBAHAi .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-twA6PBAHAi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-twA6PBAHAi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-twA6PBAHAi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-twA6PBAHAi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-twA6PBAHAi .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-twA6PBAHAi .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-twA6PBAHAi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-twA6PBAHAi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-twA6PBAHAi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-twA6PBAHAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-twA6PBAHAi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twA6PBAHAi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-twA6PBAHAi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twA6PBAHAi .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-twA6PBAHAi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-twA6PBAHAi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-twA6PBAHAi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-twA6PBAHAi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-twA6PBAHAi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-twA6PBAHAi button.navbar-toggler:focus {
  outline: none;
}
.cid-twA6PBAHAi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-twA6PBAHAi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twA6PBAHAi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twA6PBAHAi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twA6PBAHAi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twA6PBAHAi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twA6PBAHAi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-twA6PBAHAi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-twA6PBAHAi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twA6PBAHAi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twA6PBAHAi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twA6PBAHAi .collapsed .btn {
  display: flex;
}
.cid-twA6PBAHAi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-twA6PBAHAi .collapsed .navbar-collapse.collapsing,
.cid-twA6PBAHAi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-twA6PBAHAi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-twA6PBAHAi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-twA6PBAHAi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-twA6PBAHAi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-twA6PBAHAi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-twA6PBAHAi .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-twA6PBAHAi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-twA6PBAHAi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-twA6PBAHAi .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-twA6PBAHAi .collapsed button.navbar-toggler {
  display: block;
}
.cid-twA6PBAHAi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-twA6PBAHAi .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-twA6PBAHAi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-twA6PBAHAi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-twA6PBAHAi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-twA6PBAHAi .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-twA6PBAHAi .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-twA6PBAHAi .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-twA6PBAHAi .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-twA6PBAHAi .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-twA6PBAHAi .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-twA6PBAHAi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-twA6PBAHAi .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-twA6PBAHAi .navbar-collapse.collapsing,
  .cid-twA6PBAHAi .navbar-collapse.show {
    display: block !important;
  }
  .cid-twA6PBAHAi .navbar-collapse.collapsing .navbar-nav,
  .cid-twA6PBAHAi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-twA6PBAHAi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-twA6PBAHAi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-twA6PBAHAi .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-twA6PBAHAi .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-twA6PBAHAi .navbar-collapse.collapsing .navbar-buttons,
  .cid-twA6PBAHAi .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-twA6PBAHAi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-twA6PBAHAi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-twA6PBAHAi img {
    height: 3.8rem !important;
  }
  .cid-twA6PBAHAi .btn {
    display: flex;
  }
  .cid-twA6PBAHAi button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-twA6PBAHAi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-twA6PBAHAi .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-twA6PBAHAi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-twA6PBAHAi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-twA6PBAHAi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-twA6PBAHAi .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-twA6PBAHAi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-twA6PBAHAi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-twA6PBAHAi .navbar-toggler {
  position: relative;
}
.cid-twA6PBAHAi .dropdown-item.active,
.cid-twA6PBAHAi .dropdown-item:active {
  color: initial;
}
.cid-twA6PBAHAi .widget-title {
  color: #47b5ed;
}
.cid-twA6PBAHAi .widget-text {
  color: #47b5ed;
}
.cid-twA6PBAHAi .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-twA6PBAHAi .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #6592e6;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-twA6PBAHAi .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-twA6PBAHAi .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #279e64;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-twA6PBAHAi .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-twA6PBAHAi .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-twA6PBAHAi .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-twA6PBAHAi .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-twA6PBAHAi .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-twA6PBAHAi .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-twA6PBAHAi .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-twA6PBAHAi .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-twA6PBAHAi .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-twA6PBAHAi .menu-content-top,
  .cid-twA6PBAHAi .menu-bottom {
    padding: 0 15px;
  }
  .cid-twA6PBAHAi button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-twA6PBAHAi .widget-title,
.cid-twA6PBAHAi .widget-icon {
  color: #232323;
  text-align: center;
}
.cid-twA6PCODBI {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/hvac-technician-working-capacitor-part-condensing-unit-1-1920x1280.jpeg");
}
.cid-twA6PCODBI .main-container {
  width: 100%;
}
.cid-twA6PCODBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-twA6PCODBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twA6PCODBI .text-wrapper {
  margin: 0 160px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-twA6PCODBI .text-wrapper {
    margin: 0 30px;
  }
}
.cid-twA6PCODBI .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-twA6PCODBI .mbr-section-title {
  color: #FFFFFF;
}
.cid-txaE9K0o3Q {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #f0f2f5;
}
.cid-txaE9K0o3Q .container-fluid {
  max-width: 1500px;
}
.cid-txaE9K0o3Q .icon1 {
  font-size: 2.2rem;
}
.cid-txaE9K0o3Q .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-txaE9K0o3Q .team-card:hover {
  transform: translateY(-10px);
}
@media (min-width: 1400px) {
  .cid-txaE9K0o3Q .col-lg-3 {
    padding: 0 1.5rem;
  }
}
.cid-txaE9K0o3Q .card-wrap {
  height: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
}
.cid-txaE9K0o3Q .card-wrap:hover img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .cid-txaE9K0o3Q .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-txaE9K0o3Q .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  height: 300px;
  object-fit: cover;
}
.cid-txaE9K0o3Q .card-wrap .content-wrap {
  margin: auto;
}
@media (min-width: 768px) {
  .cid-txaE9K0o3Q .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txaE9K0o3Q .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-txaE9K0o3Q .content-wrap {
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.cid-txaE9K0o3Q .text-wrapper {
  display: flex;
}
.cid-txaE9K0o3Q .text-wrapper span {
  color: #6592e6;
  padding-right: 1rem;
}
.cid-txaE9K0o3Q .mbr-main-subtitle {
  background: #6592e6;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  position: relative;
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-txaE9K0o3Q .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #6592e6;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-txaE9K0o3Q .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-txaE9K0o3Q .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-left: 3rem;
}
.cid-txaE9K0o3Q .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #6592e6;
}
@media (max-width: 767px) {
  .cid-txaE9K0o3Q .social {
    padding-left: 0rem;
  }
}
.cid-txaE9K0o3Q .icons-menu {
  display: flex;
}
@media (max-width: 767px) {
  .cid-txaE9K0o3Q .icons-menu {
    justify-content: center;
  }
}
.cid-txaE9K0o3Q .image-wrap {
  clip-path: polygon(100% 0, 100% 100%, 0% 94%, 0% 0%);
}
.cid-txaE9K0o3Q .iconfont-wrapper {
  font-size: 1.2rem;
  padding: 0.4rem 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-txaE9K0o3Q .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #6592e6;
  z-index: 0;
}
.cid-txaE9K0o3Q .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-txaE9K0o3Q .mbr-iconfont {
  position: relative;
  fomt-size: 1rem;
  color: #272727;
}
.cid-txaE9K0o3Q .card-text,
.cid-txaE9K0o3Q .mbr-section-btn,
.cid-txaE9K0o3Q .social-row {
  color: #4479d9;
  text-align: center;
}
.cid-txaE9K0o3Q .mbr-role,
.cid-txaE9K0o3Q .social-row {
  color: #353535;
  text-align: left;
}
.cid-txaE9K0o3Q .card-title,
.cid-txaE9K0o3Q .social-row {
  color: #272727;
  text-align: center;
}
.cid-txaE9K0o3Q .mbr-section-title {
  color: #272727;
}
.cid-txaE9K0o3Q .card1-text {
  color: #272727;
}
.cid-txaE9K0o3Q .soc-link,
.cid-txaE9K0o3Q .soc-wrapper {
  color: #272727;
}
.cid-twA6PESt9w {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/living-room-interior-wall-mockup-warm-tones-with-leather-sofa-which-is-kitchen-3d-rendering.jpg");
}
.cid-twA6PESt9w .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-twA6PESt9w a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-twA6PESt9w .mbr-section-btn {
  margin: 0;
}
.cid-twA6PESt9w .form-control {
  box-shadow: none;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #353535;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-twA6PESt9w .form-control:focus,
.cid-twA6PESt9w .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-twA6PESt9w .form-group {
  margin-bottom: 1rem;
}
.cid-twA6PESt9w input::-webkit-input-placeholder,
.cid-twA6PESt9w textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-twA6PESt9w input:-moz-placeholder,
.cid-twA6PESt9w textarea:-moz-placeholder {
  color: #353535;
}
.cid-twA6PESt9w .jq-selectbox li,
.cid-twA6PESt9w .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-twA6PESt9w .jq-selectbox li:hover,
.cid-twA6PESt9w .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-twA6PESt9w .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-twA6PESt9w .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-twA6PESt9w .form-group,
.cid-twA6PESt9w .mbr-section-btn {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
@media (min-width: 992px) {
  .cid-twA6PESt9w .col-auto.mbr-section-btn .btn {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .cid-twA6PESt9w .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-twA6PESt9w .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 499px) {
  .cid-twA6PESt9w .form-block {
    padding: 1rem;
  }
}
.cid-twA6PESt9w H4 {
  color: #ffffff;
}
.cid-twA6PESt9w P {
  color: #ffffff;
}
.cid-twA6PESt9w LABEL {
  color: #f0f2f5;
}
.cid-twCSPTLwQc {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f0f2f5;
}
@media (max-width: 767px) {
  .cid-twCSPTLwQc .row {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-twCSPTLwQc .col-text {
    padding: 0 0 0 0;
  }
}
.cid-twCSPTLwQc .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-twCSPTLwQc .text-wrapper {
    text-align: center !important;
    padding-bottom: 54px;
  }
}
.cid-twCSPTLwQc .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #4479d9;
}
@media (max-width: 767px) {
  .cid-twCSPTLwQc .label-text {
    text-align: center !important;
  }
}
.cid-twCSPTLwQc .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-twCSPTLwQc .mbr-section-title {
    text-align: center !important;
  }
}
.cid-twCSPTLwQc .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-twCSPTLwQc .mbr-text {
    text-align: center !important;
  }
}
.cid-twCSPTLwQc .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-twCSPTLwQc .btn-container {
  width: 100%;
  margin-top: auto;
}
.cid-twCSPTLwQc .mbr-section-btn .btn {
  padding: 0;
}
.cid-twCSPTLwQc .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-twCSPTLwQc .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-twCSPTLwQc .col-cards {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cid-twCSPTLwQc .col-cards {
    padding: 0;
    padding-left: 1.8%;
  }
}
@media (min-width: 992px) {
  .cid-twCSPTLwQc .col-cards {
    padding-left: 5%;
  }
}
.cid-twCSPTLwQc .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  width: 100%;
}
.cid-twCSPTLwQc .cards-wrap:hover {
  background-color: #ffffff;
}
.cid-twCSPTLwQc .card {
  padding: 30px;
  background-color: #f0f2f5;
  transition: 0.4s all;
  border-radius: 0;
}
.cid-twCSPTLwQc .card:hover {
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-twCSPTLwQc .card:hover {
    transform: translate(0px, -10px);
  }
}
.cid-twCSPTLwQc .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-twCSPTLwQc .img-container {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-twCSPTLwQc .img-container {
    display: flex;
    justify-content: center;
  }
}
.cid-twCSPTLwQc .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  height: 93px;
  position: relative;
}
.cid-twCSPTLwQc .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-twCSPTLwQc .img-bg {
  background-color: #ffed27;
  min-width: 75%;
  height: 75%;
  border-radius: 50%;
  position: absolute;
}
.cid-twCSPTLwQc .card-title {
  color: #ffed27;
  margin-bottom: 8px;
}
.cid-twCSPTLwQc .card-text {
  color: #222222;
  margin-bottom: 0;
  text-align: left;
}
.cid-twA6PH4vK2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/cozy-study-room-modern-apartment-1920x1280.jpg");
}
.cid-twA6PH4vK2 .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-twA6PH4vK2 .mbr-section-title {
  margin: 0;
  color: #ffffff;
}
.cid-twA6PH4vK2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-twA6PH4vK2 .card-img span {
  color: #4479d9;
}
.cid-twA6PH4vK2 .row-item {
  margin-bottom: 2rem;
}
.cid-twA6PH4vK2 .row-item:hover .wrapper {
  background: linear-gradient(90deg, #4479d9, #4479d9);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-twA6PH4vK2 .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-twA6PH4vK2 .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-twA6PH4vK2 .wrapper {
  padding: 2.5rem 1rem;
  background: #f0f2f5;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-twA6PH4vK2 .mbr-card-title,
.cid-twA6PH4vK2 .card-img {
  color: #353535;
}
.cid-twA6PI1GjP {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f0f2f5;
}
.cid-twA6PI1GjP .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-twA6PI1GjP .row {
    padding: 0 0.75rem;
  }
}
.cid-twA6PI1GjP .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-twA6PI1GjP .label-text {
  color: #4479d9;
}
.cid-twA6PI1GjP .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-twA6PI1GjP .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-twA6PI1GjP .card {
    padding: 0;
  }
}
.cid-twA6PI1GjP .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-twA6PI1GjP .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-twA6PI1GjP .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-twA6PI1GjP .card-text {
  color: #555555;
}
.cid-twA6PI1GjP .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-twA6PI1GjP .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-twA6PI1GjP .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-twA6PI1GjP .card-box {
    text-align: center;
  }
}
.cid-twA6PI1GjP .mbr-fallback-image.disabled {
  display: none;
}
.cid-twA6PI1GjP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twA6PIIjXH {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f0f2f5;
}
.cid-twA6PIIjXH .mbr-fallback-image.disabled {
  display: none;
}
.cid-twA6PIIjXH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twA6PIIjXH .mbr-text {
  color: #767676;
}
.cid-twA6PIIjXH .mbr-section-subtitle {
  color: #767676;
}
.cid-twA6PIIjXH .title .num {
  width: 100%;
  display: block;
}
.cid-twA6PIIjXH .title .card-title {
  z-index: 1;
}
.cid-twA6PIIjXH .num {
  color: #6592e6;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-twA6PIIjXH * {
    text-align: center !important;
  }
  .cid-twA6PIIjXH .content-column {
    margin-bottom: 2rem;
  }
}
.cid-twA6PIIjXH .card-text {
  color: #000000;
  text-align: left;
}
.cid-twA6PIIjXH .card-title,
.cid-twA6PIIjXH .card-img {
  text-align: left;
  color: #000000;
}
.cid-twA6PKRn69 {
  background-color: #4479d9;
}
@media (min-width: 768px) {
  .cid-twA6PKRn69 {
    background-image: url("../../../assets/images/repairman-doing-air-conditioner-service-1000x667.jpg");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 50% auto;
  }
}
.cid-twA6PKRn69 .row {
  align-items: center;
}
.cid-twA6PKRn69 .image-wrapper {
  padding: 1rem;
}
.cid-twA6PKRn69 .col-text {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.cid-twA6PKRn69 .col-text .radial-svg {
  display: none;
}
@media (min-width: 992px) {
  .cid-twA6PKRn69 .col-text .radial-svg {
    display: block;
    position: absolute;
    top: 0;
    right: -90px;
    bottom: 0;
    height: 100%;
    width: 200px;
    z-index: 1;
  }
  .cid-twA6PKRn69 .col-text .radial-svg path {
    fill: #4479d9;
  }
}
.cid-twA6PKRn69 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .cid-twA6PKRn69 .text-wrapper {
    max-width: 400px;
  }
}
.cid-twA6PKRn69 .label-text {
  width: 100%;
  color: #ffffff;
}
.cid-twA6PKRn69 .mbr-section-title {
  margin-bottom: 1.425rem;
  width: 100%;
  color: #ffffff;
}
.cid-twA6PKRn69 .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 12px;
}
.cid-twA6PKRn69 .btn-container {
  width: 100%;
}
.cid-twA6PKRn69 .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-twA6PKRn69 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-twA6PKRn69 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-twA6PKRn69 .btn-white-outline {
  border: 1px solid currentColor;
}
.cid-twA6PKRn69 .btn-white-outline:hover {
  color: #6592e6 !important;
  background: #ffffff !important;
}
.cid-twA6PKRn69 .mbr-fallback-image.disabled {
  display: none;
}
.cid-twA6PKRn69 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txanRs3H0q {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f0f2f5;
}
.cid-txanRs3H0q .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-txanRs3H0q .row {
    padding: 0 0.75rem;
  }
}
.cid-txanRs3H0q .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-txanRs3H0q .label-text {
  color: #4479d9;
}
.cid-txanRs3H0q .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-txanRs3H0q .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-txanRs3H0q .card {
    padding: 0;
  }
}
.cid-txanRs3H0q .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-txanRs3H0q .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-txanRs3H0q .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-txanRs3H0q .card-text {
  color: #555555;
}
.cid-txanRs3H0q .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-txanRs3H0q .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-txanRs3H0q .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-txanRs3H0q .card-box {
    text-align: center;
  }
}
.cid-txanRs3H0q .mbr-fallback-image.disabled {
  display: none;
}
.cid-txanRs3H0q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txanRs3H0q .mbr-section-title {
  color: #4479d9;
}
.cid-txanS3M35O {
  padding-top: 0px;
  padding-bottom: 180px;
  background-color: #f0f2f5;
}
.cid-txanS3M35O .carousel-item {
  padding: 0 10%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-txanS3M35O .carousel-item.active,
.cid-txanS3M35O .carousel-item-next,
.cid-txanS3M35O .carousel-item-prev {
  display: flex;
}
.cid-txanS3M35O .img-box {
  position: relative;
  width: fit-content;
  margin: auto;
}
.cid-txanS3M35O .carousel-controls .mbr-iconfont {
  font-family: Moririse2 !important;
  font-size: 1rem;
  font-weight: 900;
  transition: opacity .3s;
}
.cid-txanS3M35O .carousel-controls a {
  transition: all .3s;
  border-radius: 50%;
  border: none;
  background-color: transparent;
}
.cid-txanS3M35O .carousel-controls a span {
  color: #103178 !important;
  font-size: 35px !important;
}
.cid-txanS3M35O .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-txanS3M35O .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-txanS3M35O .carousel-controls .carousel-control-next,
.cid-txanS3M35O .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-txanS3M35O .carousel-controls .carousel-control-next {
  bottom: auto;
  top: 44%;
}
.cid-txanS3M35O .carousel-controls .carousel-control-prev {
  bottom: auto;
  top: 44%;
}
.cid-txanS3M35O .author-box {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-txanS3M35O .face {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
  object-fit: cover;
}
.cid-txanS3M35O .author {
  margin: auto 0;
}
.cid-txanS3M35O .mbr-text {
  margin-bottom: 34px !important;
}
.cid-txanS3M35O h3,
.cid-txanS3M35O h4 {
  margin: 0;
  padding: 0;
}
.cid-txanS3M35O .mbr-bottom {
  color: #767676;
}
.cid-txanS3M35O .box {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px!important;
}
@media (max-width: 992px) {
  .cid-txanS3M35O .carousel-controls a span {
    bottom: auto;
    top: 30%;
  }
}
@media (max-width: 767px) {
  .cid-txanS3M35O .carousel-controls a span {
    bottom: auto;
    top: 20%;
  }
}
.cid-txanS3M35O .carousel-indicators {
  bottom: -65px;
}
@media (max-width: 786px) {
  .cid-txanS3M35O .carousel-indicators {
    bottom: -75px;
  }
}
.cid-txanS3M35O .carousel-indicators li {
  margin-right: 31px;
  margin-left: 31px;
  opacity: 1;
  width: 6px;
  height: 6px;
  max-width: 6px;
  max-height: 6px;
  min-width: 6px;
  min-height: 6px;
  background: #000000;
  border: none;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cid-txanS3M35O .carousel-indicators li:hover {
  opacity: 1 !important;
}
.cid-txanS3M35O .carousel-indicators li svg {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  z-index: 1;
  fill: none;
  color: #000000;
  stroke: none;
  overflow: visible;
}
.cid-txanS3M35O .carousel-indicators li svg circle {
  stroke-dasharray: 110;
  stroke-dashoffset: 110;
  stroke: #000000;
  stroke-width: 1;
  transition: all 0.6s cubic-bezier(0.43, 0.41, 0.36, 0.9);
  transform: rotate(-145deg);
  transform-origin: center;
}
.cid-txanS3M35O .carousel-indicators li.active {
  background: #000000;
}
.cid-txanS3M35O .carousel-indicators li.active circle {
  stroke-dashoffset: 0;
  transform: rotate(55deg);
}
.cid-txanS3M35O .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-txanS3M35O .mbr-text,
.cid-txanS3M35O .mbr-section-btn {
  text-align: left;
}
.cid-txanS3M35O .mbr-fallback-image.disabled {
  display: none;
}
.cid-txanS3M35O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txanS3M35O H3 {
  text-align: center;
}
.cid-twA6PLBAwx {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #f0f2f5;
}
.cid-twA6PLBAwx .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-twA6PLBAwx .row {
    padding: 0 0.75rem;
  }
}
.cid-twA6PLBAwx .text-container {
  margin-bottom: 10px;
  padding: 0 !important;
}
.cid-twA6PLBAwx .label-text {
  color: #4479d9;
}
.cid-twA6PLBAwx .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-twA6PLBAwx .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-twA6PLBAwx .card {
    padding: 0;
  }
}
.cid-twA6PLBAwx .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-twA6PLBAwx .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-twA6PLBAwx .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-twA6PLBAwx .card-text {
  color: #555555;
}
.cid-twA6PLBAwx .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-twA6PLBAwx .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-twA6PLBAwx .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-twA6PLBAwx .card-box {
    text-align: center;
  }
}
.cid-twA6PLBAwx .mbr-fallback-image.disabled {
  display: none;
}
.cid-twA6PLBAwx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twA6PLBAwx .mbr-section-title {
  color: #4479d9;
}
.cid-twA6PMjysY {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #f0f2f5;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-twA6PMjysY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twA6PMjysY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-twA6PMjysY .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-twA6PMjysY .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-twA6PMjysY .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-twA6PMjysY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twA6PMjysY .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-twA6PMjysY .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-twA6PMjysY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twA6PMjysY .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-twA6PMjysY .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-twA6PMjysY .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-twA6PMjysY .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-twA6PMjysY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twA6PMjysY .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-twA6PMjysY .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-twA6PMjysY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twA6PMjysY .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-twA6PMjysY .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-twCTjB4bbT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-twCTjB4bbT .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-twCTjB4bbT .row {
    padding: 0 0.75rem;
  }
}
.cid-twCTjB4bbT .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-twCTjB4bbT .label-text {
  color: #ffffff;
}
.cid-twCTjB4bbT .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-twCTjB4bbT .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-twCTjB4bbT .card {
    padding: 0;
  }
}
.cid-twCTjB4bbT .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-twCTjB4bbT .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-twCTjB4bbT .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-twCTjB4bbT .card-text {
  color: #555555;
}
.cid-twCTjB4bbT .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-twCTjB4bbT .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-twCTjB4bbT .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-twCTjB4bbT .card-box {
    text-align: center;
  }
}
.cid-twCTjB4bbT .mbr-fallback-image.disabled {
  display: none;
}
.cid-twCTjB4bbT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twCTjB4bbT .mbr-section-title {
  color: #ffffff;
}
.cid-twCTsfGeG2 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-twCTsfGeG2 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #103178;
  margin-bottom: 2rem;
}
.cid-twCTsfGeG2 .card-wrapper {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.cid-twCTsfGeG2 .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-twCTsfGeG2 .card {
    max-width: 14.2%;
  }
}
.cid-twCTsfGeG2 .card-title,
.cid-twCTsfGeG2 .iconfont-wrapper {
  color: #ffffff;
}
.cid-twA6PNlb1o {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f0f2f5;
}
.cid-twA6PNlb1o .card {
  background-color: transparent;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-twA6PNlb1o .title-section .mbr-section-title {
  text-align: center;
  color: #4479d9;
}
.cid-twA6PNlb1o .card-title {
  flex: 1 1 auto;
}
.cid-twA6PNlb1o .accordion-body {
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.cid-twA6PNlb1o .heading-acc[aria-expanded="true"] .acc-button {
  transform: rotate(-45deg);
}
.cid-twA6PNlb1o .heading-acc:hover .acc-button {
  background-color: #4479d9;
}
.cid-twA6PNlb1o .heading-acc:hover .acc-button .acc-button-line1,
.cid-twA6PNlb1o .heading-acc:hover .acc-button .acc-button-line2 {
  background-color: white;
}
.cid-twA6PNlb1o .acc-button-container .acc-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  transition: 0.3s linear;
}
.cid-twA6PNlb1o .acc-button-container .acc-button .acc-button-line1,
.cid-twA6PNlb1o .acc-button-container .acc-button .acc-button-line2 {
  transition: 0.3s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background-color: black;
  width: 2px;
  height: 22px;
  transform: translate(-50%, -50%);
}
.cid-twA6PNlb1o .acc-button-container .acc-button .acc-button-line1 {
  transform: translate(-50%, -50%) rotate(90deg);
}
.cid-twA6PNlb1o .mbr-fallback-image.disabled {
  display: none;
}
.cid-twA6PNlb1o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twA6PNlb1o .mbr-section-subtitle {
  color: #353535;
}
.cid-twA6POjS7a {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #eff0f6;
}
.cid-twA6POjS7a .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-twA6POjS7a .text-content .mbr-subtitle {
  color: #4479d9;
}
.cid-twA6POjS7a .text-content .mbr-section-title {
  color: #6592e6;
}
.cid-twA6POjS7a .text-content .mbr-text {
  color: #47b5ed;
}
.cid-twA6POjS7a .text-content .list-block {
  margin-top: 16px;
  padding-bottom: 16px;
}
.cid-twA6POjS7a .text-content .list-block .card-img {
  width: auto;
}
.cid-twA6POjS7a .text-content .list-block .card-img span {
  color: #4479d9;
  font-size: 1.5rem;
}
.cid-twA6POjS7a .text-content .list-block .list-item-title {
  color: #6592e6;
  transition: all .3s linear 0s;
}
.cid-twA6POjS7a .text-content .list-block .list-item-title:hover {
  color: #103178;
}
.cid-twA6POjS7a .text-content .list-block .list-item-text {
  padding-top: 10px;
  color: #47b5ed;
  margin-bottom: 0;
}
.cid-twA6POjS7a .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-twA6POjS7a .text-content .social {
  font-size: 1.2rem;
}
.cid-twA6POjS7a .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  transition: 0.3s all;
  color: #13287d;
}
.cid-twA6POjS7a .text-content .social span:hover {
  color: #279e64;
  transition: 0.3s all;
}
.cid-twA6POjS7a .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
}
.cid-twA6POjS7a .list-block {
  position: relative;
}
.cid-twA6POjS7a .list-block h4,
.cid-twA6POjS7a .list-block p {
  padding-left: 2.625rem;
}
.cid-twA6POjS7a .card-img {
  display: block;
}
.cid-twA6POjS7a input,
.cid-twA6POjS7a textarea {
  border-radius: 3px;
  min-height: 3rem;
  padding: 13px 20px !important;
  font-size: 13px;
  color: #40b0bf;
  height: 60px;
}
.cid-twA6POjS7a .form-control,
.cid-twA6POjS7a .field-input {
  padding: 13px 20px !important;
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-twA6POjS7a .form-control:hover,
.cid-twA6POjS7a .field-input:hover,
.cid-twA6POjS7a .form-control:focus,
.cid-twA6POjS7a .field-input:focus {
  background-color: #f7f7f7;
  border-color: #279e64;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-twA6POjS7a .form-control:focus,
.cid-twA6POjS7a .field-input:focus {
  box-shadow: 0 2px 9px 2px rgba(0, 0, 0, 0.15);
}
.cid-twA6POjS7a input::-webkit-input-placeholder,
.cid-twA6POjS7a textarea::-webkit-input-placeholder {
  color: #6d7a8c;
}
.cid-twA6POjS7a input:-moz-placeholder,
.cid-twA6POjS7a textarea:-moz-placeholder {
  color: #6d7a8c;
}
.cid-twA6POjS7a .jq-selectbox li,
.cid-twA6POjS7a .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-twA6POjS7a .jq-selectbox li:hover,
.cid-twA6POjS7a .jq-selectbox li.selected {
  background-color: #f7f7f7;
  color: #000000;
}
.cid-twA6POjS7a .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-twA6POjS7a .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f7f7f7;
}
.cid-twA6POjS7a .mbr-form {
  max-width: 550px;
}
.cid-twA6POjS7a .mbr-form .content-title {
  color: #6592e6;
  margin-bottom: 20px;
}
.cid-twA6POjS7a .mbr-form .content-subtitle {
  color: #47b5ed;
}
.cid-twA6POjS7a .mbr-form textarea {
  min-height: 100px;
  height: 194px;
}
.cid-twA6POjS7a .mbr-form .btn {
  justify-content: space-between;
  border-radius: 30px;
  border-color: #6592e6;
  color: #6592e6;
  padding: 18px 42px;
  margin: 0 !important;
  margin-top: 7px !important;
}
.cid-twA6POjS7a .mbr-form .btn-success:hover {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #fff !important;
}
@media (max-width: 991px) {
  .cid-twA6POjS7a .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-twA6POjS7a .mbr-section-title,
  .cid-twA6POjS7a .content-title,
  .cid-twA6POjS7a .mbr-section-btn {
    text-align: left;
  }
}
.cid-twA6POjS7a .text-content .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-twA6POjS7a .text-content .mbr-subtitle {
  text-align: center;
}
.cid-twA6POjS7a .text-content .list-block .list-item-title {
  color: #103178;
}
.cid-twA6POjS7a H3 {
  color: #103178;
}
.cid-twA6POjS7a .mbr-form .content-title,
.cid-twA6POjS7a .social {
  color: #353535;
}
.cid-twA6POjS7a .form-check-input {
  min-height: 12px !important;
  padding: initial !important;
  height: 12px !important;
  width: 12px !important;
}
.cid-twA6PPuw6v {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f0f2f5;
}
.cid-twA6PPuw6v .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-twA6PPuw6v .mbr-section-title {
  margin: 0;
  color: #13287d;
}
.cid-twA6PPuw6v .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-twA6PPuw6v .card-img span {
  color: #279e64;
}
.cid-twA6PPuw6v .row-item {
  margin-bottom: 2rem;
}
.cid-twA6PPuw6v .row-item:hover .wrapper {
  background: linear-gradient(90deg, #279e64, #279e64);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-twA6PPuw6v .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-twA6PPuw6v .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-twA6PPuw6v .wrapper {
  padding: 2.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-twA6PPuw6v .mbr-card-title,
.cid-twA6PPuw6v .card-img {
  color: #4479d9;
}
.cid-txauwcFZRH {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #353535;
}
.cid-txauwcFZRH .listico {
  padding-right: 1rem;
  color: #dcdfe2;
  font-size: 0.3rem;
}
.cid-txauwcFZRH .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-txauwcFZRH .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-txauwcFZRH .mbr-text {
  color: #444;
}
.cid-txauwcFZRH h5 {
  margin-bottom: 0;
}
.cid-txauwcFZRH .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-txauwcFZRH .socicon {
  color: #9e9e9e;
  font-size: 0.6rem;
}
.cid-txauwcFZRH .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-txauwcFZRH .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-txauwcFZRH .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txauwcFZRH .social-list a:hover {
  opacity: .4;
}
.cid-txauwcFZRH .media-container-row > div {
  padding: 0px;
}
.cid-txauwcFZRH .text2 {
  color: #eeeff2;
  text-align: left;
}
.cid-txauwcFZRH .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-txauwcFZRH .group-title SPAN {
  color: #656565;
}
.cid-txauwcFZRH .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-txauwcFZRH .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-txauwcFZRH h3 {
    margin-bottom: 10px;
  }
}
.cid-txauwcFZRH .links SPAN {
  color: #9e9e9e;
}
.cid-txauwcFZRH .links,
.cid-txauwcFZRH .navbar-brand {
  color: #eeeff2;
}
.cid-txauwcFZRH .links,
.cid-txauwcFZRH .social-list {
  text-align: left;
}
.cid-twA6PRYstF.popup-builder {
  background-color: #ffffff;
}
.cid-twA6PRYstF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-twA6PRYstF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-twA6PRYstF .modal-content,
.cid-twA6PRYstF .modal-dialog {
  height: auto;
}
.cid-twA6PRYstF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-twA6PRYstF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-twA6PRYstF .form-wrapper .mbr-form .form-group,
  .cid-twA6PRYstF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-twA6PRYstF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-twA6PRYstF .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-twA6PRYstF .mbr-text {
  text-align: center;
}
.cid-twA6PRYstF .pt-0 {
  padding-top: 0 !important;
}
.cid-twA6PRYstF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-twA6PRYstF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-twA6PRYstF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-twA6PRYstF .modal-open {
  overflow: hidden;
}
.cid-twA6PRYstF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-twA6PRYstF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-twA6PRYstF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-twA6PRYstF .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-twA6PRYstF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-twA6PRYstF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-twA6PRYstF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-twA6PRYstF .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-twA6PRYstF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-twA6PRYstF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-twA6PRYstF .modal-backdrop.fade {
  opacity: 0;
}
.cid-twA6PRYstF .modal-backdrop.show {
  opacity: .5;
}
.cid-twA6PRYstF .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-twA6PRYstF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-twA6PRYstF .modal-header {
    padding: 1rem;
  }
}
.cid-twA6PRYstF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-twA6PRYstF .modal-header .close svg {
  fill: #353535;
}
.cid-twA6PRYstF .modal-header .close:hover {
  opacity: 1;
}
.cid-twA6PRYstF .modal-header .close:focus {
  outline: none;
}
.cid-twA6PRYstF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-twA6PRYstF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-twA6PRYstF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-twA6PRYstF .modal-body {
    padding: 1rem;
  }
}
.cid-twA6PRYstF .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-twA6PRYstF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-twA6PRYstF .modal-footer {
    padding: 1rem;
  }
}
.cid-twA6PRYstF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-twA6PRYstF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-twA6PRYstF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-twA6PRYstF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-twA6PRYstF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-twA6PRYstF .modal-lg,
  .cid-twA6PRYstF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-twA6PRYstF .modal-xl {
    max-width: 1140px;
  }
}
.cid-twA6PRYstF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-twA6PRYstF .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-twA6PRYstF .form-group {
  margin-bottom: 1rem;
}
.cid-twA6PRYstF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-twA6PRYstF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-twA6PRYstF .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-twA6PRYstF .mbr-section-btn {
  margin: 0;
}
.cid-twA6PRYstF .mbr-section-btn .btn {
  margin: 0;
}
.cid-txL4gEx5Ug.popup-builder {
  background-color: #ffffff;
}
.cid-txL4gEx5Ug.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txL4gEx5Ug.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txL4gEx5Ug .modal-content,
.cid-txL4gEx5Ug .modal-dialog {
  height: auto;
}
.cid-txL4gEx5Ug .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txL4gEx5Ug .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txL4gEx5Ug .form-wrapper .mbr-form .form-group,
  .cid-txL4gEx5Ug .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txL4gEx5Ug .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txL4gEx5Ug .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txL4gEx5Ug .mbr-text {
  text-align: center;
}
.cid-txL4gEx5Ug .pt-0 {
  padding-top: 0 !important;
}
.cid-txL4gEx5Ug .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txL4gEx5Ug .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txL4gEx5Ug .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txL4gEx5Ug .modal-open {
  overflow: hidden;
}
.cid-txL4gEx5Ug .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txL4gEx5Ug .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txL4gEx5Ug .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txL4gEx5Ug .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txL4gEx5Ug .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txL4gEx5Ug .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txL4gEx5Ug .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txL4gEx5Ug .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txL4gEx5Ug .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txL4gEx5Ug .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txL4gEx5Ug .modal-backdrop.fade {
  opacity: 0;
}
.cid-txL4gEx5Ug .modal-backdrop.show {
  opacity: .5;
}
.cid-txL4gEx5Ug .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txL4gEx5Ug .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txL4gEx5Ug .modal-header {
    padding: 1rem;
  }
}
.cid-txL4gEx5Ug .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txL4gEx5Ug .modal-header .close svg {
  fill: #353535;
}
.cid-txL4gEx5Ug .modal-header .close:hover {
  opacity: 1;
}
.cid-txL4gEx5Ug .modal-header .close:focus {
  outline: none;
}
.cid-txL4gEx5Ug .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-txL4gEx5Ug .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txL4gEx5Ug .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txL4gEx5Ug .modal-body {
    padding: 1rem;
  }
}
.cid-txL4gEx5Ug .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txL4gEx5Ug .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txL4gEx5Ug .modal-footer {
    padding: 1rem;
  }
}
.cid-txL4gEx5Ug .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txL4gEx5Ug .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txL4gEx5Ug .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txL4gEx5Ug .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txL4gEx5Ug .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txL4gEx5Ug .modal-lg,
  .cid-txL4gEx5Ug .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txL4gEx5Ug .modal-xl {
    max-width: 1140px;
  }
}
.cid-txL4gEx5Ug .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txL4gEx5Ug .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txL4gEx5Ug .form-group {
  margin-bottom: 1rem;
}
.cid-txL4gEx5Ug .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txL4gEx5Ug .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txL4gEx5Ug .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txL4gEx5Ug .mbr-section-btn {
  margin: 0;
}
.cid-txL4gEx5Ug .mbr-section-btn .btn {
  margin: 0;
}
.cid-twD8swbLx2 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-twD8swbLx2 .navbar-fixed-top {
  padding-top: 0;
}
.cid-twD8swbLx2 .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-twD8swbLx2 .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-twD8swbLx2 .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-twD8swbLx2 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-twD8swbLx2 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-twD8swbLx2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-twD8swbLx2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-twD8swbLx2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-twD8swbLx2 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-twD8swbLx2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-twD8swbLx2 .menu-content-top {
  background: #ffffff;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-twD8swbLx2 .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-twD8swbLx2 .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-twD8swbLx2 .dropdown-item,
.cid-twD8swbLx2 .nav-link,
.cid-twD8swbLx2 .brand-name {
  font-style: normal;
}
.cid-twD8swbLx2 .dropdown-item:hover,
.cid-twD8swbLx2 .nav-link:hover,
.cid-twD8swbLx2 .brand-name:hover {
  color: #124ad6 !important;
}
.cid-twD8swbLx2 .dropdown-menu {
  background-color: #ffffff;
}
.cid-twD8swbLx2 .dropdown-item:active {
  background-color: #ffffff;
}
.cid-twD8swbLx2 .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-twD8swbLx2 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-twD8swbLx2 .nav-item {
  position: relative;
}
.cid-twD8swbLx2 .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-twD8swbLx2 .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-twD8swbLx2 .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-twD8swbLx2 .nav-link {
    line-height: 3;
  }
  .cid-twD8swbLx2 .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #ffe161;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-twD8swbLx2 .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-twD8swbLx2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twD8swbLx2 .content-text {
  margin-bottom: 0;
}
.cid-twD8swbLx2 .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-twD8swbLx2 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #6592e6;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-twD8swbLx2 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-twD8swbLx2 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-twD8swbLx2 .navbar-nav .nav-item .link {
  margin: 0 10px !important;
}
.cid-twD8swbLx2 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-twD8swbLx2 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-twD8swbLx2 .content-right-side {
  text-align: center;
}
.cid-twD8swbLx2 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-twD8swbLx2 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-twD8swbLx2 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #4479d9;
}
.cid-twD8swbLx2 .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-twD8swbLx2 .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-twD8swbLx2 .info-widget:first-child {
  margin-left: 0;
}
.cid-twD8swbLx2 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-twD8swbLx2 .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-twD8swbLx2 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-twD8swbLx2 .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-twD8swbLx2 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-twD8swbLx2 .navbar {
    display: block;
    padding: 0;
  }
  .cid-twD8swbLx2 .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-twD8swbLx2 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-twD8swbLx2 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-twD8swbLx2 .navbar-toggler {
    display: none;
  }
  .cid-twD8swbLx2 .navbar-collapse {
    justify-content: center;
  }
}
.cid-twD8swbLx2 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-twD8swbLx2 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-twD8swbLx2 .btn-sm {
  padding: 13px 29px;
}
.cid-twD8swbLx2 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-twD8swbLx2 .btn::after {
  background-color: #47b5ed;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-twD8swbLx2 .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-twD8swbLx2 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-twD8swbLx2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-twD8swbLx2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-twD8swbLx2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-twD8swbLx2 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-twD8swbLx2 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-twD8swbLx2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-twD8swbLx2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-twD8swbLx2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-twD8swbLx2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-twD8swbLx2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twD8swbLx2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-twD8swbLx2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twD8swbLx2 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-twD8swbLx2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-twD8swbLx2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-twD8swbLx2 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-twD8swbLx2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-twD8swbLx2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-twD8swbLx2 button.navbar-toggler:focus {
  outline: none;
}
.cid-twD8swbLx2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-twD8swbLx2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twD8swbLx2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twD8swbLx2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twD8swbLx2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twD8swbLx2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twD8swbLx2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-twD8swbLx2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-twD8swbLx2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twD8swbLx2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twD8swbLx2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twD8swbLx2 .collapsed .btn {
  display: flex;
}
.cid-twD8swbLx2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-twD8swbLx2 .collapsed .navbar-collapse.collapsing,
.cid-twD8swbLx2 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-twD8swbLx2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-twD8swbLx2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-twD8swbLx2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-twD8swbLx2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-twD8swbLx2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-twD8swbLx2 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-twD8swbLx2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-twD8swbLx2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-twD8swbLx2 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-twD8swbLx2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-twD8swbLx2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-twD8swbLx2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-twD8swbLx2 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-twD8swbLx2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-twD8swbLx2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-twD8swbLx2 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-twD8swbLx2 .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-twD8swbLx2 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-twD8swbLx2 .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-twD8swbLx2 .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-twD8swbLx2 .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-twD8swbLx2 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-twD8swbLx2 .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-twD8swbLx2 .navbar-collapse.collapsing,
  .cid-twD8swbLx2 .navbar-collapse.show {
    display: block !important;
  }
  .cid-twD8swbLx2 .navbar-collapse.collapsing .navbar-nav,
  .cid-twD8swbLx2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-twD8swbLx2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-twD8swbLx2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-twD8swbLx2 .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-twD8swbLx2 .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-twD8swbLx2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-twD8swbLx2 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-twD8swbLx2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-twD8swbLx2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-twD8swbLx2 img {
    height: 3.8rem !important;
  }
  .cid-twD8swbLx2 .btn {
    display: flex;
  }
  .cid-twD8swbLx2 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-twD8swbLx2 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-twD8swbLx2 .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-twD8swbLx2 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-twD8swbLx2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-twD8swbLx2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-twD8swbLx2 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-twD8swbLx2 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-twD8swbLx2 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-twD8swbLx2 .navbar-toggler {
  position: relative;
}
.cid-twD8swbLx2 .dropdown-item.active,
.cid-twD8swbLx2 .dropdown-item:active {
  color: initial;
}
.cid-twD8swbLx2 .widget-title {
  color: #47b5ed;
}
.cid-twD8swbLx2 .widget-text {
  color: #47b5ed;
}
.cid-twD8swbLx2 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-twD8swbLx2 .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #6592e6;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-twD8swbLx2 .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-twD8swbLx2 .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #279e64;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-twD8swbLx2 .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-twD8swbLx2 .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-twD8swbLx2 .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-twD8swbLx2 .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-twD8swbLx2 .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-twD8swbLx2 .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-twD8swbLx2 .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-twD8swbLx2 .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-twD8swbLx2 .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-twD8swbLx2 .menu-content-top,
  .cid-twD8swbLx2 .menu-bottom {
    padding: 0 15px;
  }
  .cid-twD8swbLx2 button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-twD8swbLx2 .widget-title,
.cid-twD8swbLx2 .widget-icon {
  color: #232323;
  text-align: center;
}
.cid-twD8sxr4il {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/hvac-technician-working-capacitor-part-condensing-unit-1-1920x1280.jpeg");
}
.cid-twD8sxr4il .main-container {
  width: 100%;
}
.cid-twD8sxr4il .mbr-fallback-image.disabled {
  display: none;
}
.cid-twD8sxr4il .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twD8sxr4il .text-wrapper {
  margin: 0 160px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-twD8sxr4il .text-wrapper {
    margin: 0 30px;
  }
}
.cid-twD8sxr4il .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-twD8sxr4il .mbr-section-title {
  color: #FFFFFF;
}
.cid-twD9inv9Rh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f0f2f5;
}
.cid-twD9inv9Rh .container-fluid {
  max-width: 1500px;
}
.cid-twD9inv9Rh .icon1 {
  font-size: 2.2rem;
}
.cid-twD9inv9Rh .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-twD9inv9Rh .team-card:hover {
  transform: translateY(-10px);
}
@media (min-width: 1400px) {
  .cid-twD9inv9Rh .col-lg-3 {
    padding: 0 1.5rem;
  }
}
.cid-twD9inv9Rh .card-wrap {
  height: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
}
.cid-twD9inv9Rh .card-wrap:hover img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .cid-twD9inv9Rh .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-twD9inv9Rh .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  height: 300px;
  object-fit: cover;
}
.cid-twD9inv9Rh .card-wrap .content-wrap {
  margin: auto;
}
@media (min-width: 768px) {
  .cid-twD9inv9Rh .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-twD9inv9Rh .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-twD9inv9Rh .content-wrap {
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.cid-twD9inv9Rh .text-wrapper {
  display: flex;
}
.cid-twD9inv9Rh .text-wrapper span {
  color: #6592e6;
  padding-right: 1rem;
}
.cid-twD9inv9Rh .mbr-main-subtitle {
  background: #6592e6;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  position: relative;
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-twD9inv9Rh .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #6592e6;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-twD9inv9Rh .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-twD9inv9Rh .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-left: 3rem;
}
.cid-twD9inv9Rh .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #6592e6;
}
@media (max-width: 767px) {
  .cid-twD9inv9Rh .social {
    padding-left: 0rem;
  }
}
.cid-twD9inv9Rh .icons-menu {
  display: flex;
}
@media (max-width: 767px) {
  .cid-twD9inv9Rh .icons-menu {
    justify-content: center;
  }
}
.cid-twD9inv9Rh .image-wrap {
  clip-path: polygon(100% 0, 100% 100%, 0% 94%, 0% 0%);
}
.cid-twD9inv9Rh .iconfont-wrapper {
  font-size: 1.2rem;
  padding: 0.4rem 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-twD9inv9Rh .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #6592e6;
  z-index: 0;
}
.cid-twD9inv9Rh .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-twD9inv9Rh .mbr-iconfont {
  position: relative;
  fomt-size: 1rem;
  color: #272727;
}
.cid-twD9inv9Rh .card-text,
.cid-twD9inv9Rh .mbr-section-btn,
.cid-twD9inv9Rh .social-row {
  color: #4479d9;
  text-align: center;
}
.cid-twD9inv9Rh .mbr-role,
.cid-twD9inv9Rh .social-row {
  color: #353535;
  text-align: left;
}
.cid-twD9inv9Rh .card-title,
.cid-twD9inv9Rh .social-row {
  color: #272727;
  text-align: center;
}
.cid-twD9inv9Rh .mbr-section-title {
  color: #272727;
}
.cid-twD9inv9Rh .card1-text {
  color: #272727;
}
.cid-twD9inv9Rh .soc-link,
.cid-twD9inv9Rh .soc-wrapper {
  color: #272727;
}
.cid-twD8szy0uA {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/living-room-interior-wall-mockup-warm-tones-with-leather-sofa-which-is-kitchen-3d-rendering.jpg");
}
.cid-twD8szy0uA .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-twD8szy0uA a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-twD8szy0uA .mbr-section-btn {
  margin: 0;
}
.cid-twD8szy0uA .form-control {
  box-shadow: none;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #353535;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-twD8szy0uA .form-control:focus,
.cid-twD8szy0uA .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-twD8szy0uA .form-group {
  margin-bottom: 1rem;
}
.cid-twD8szy0uA input::-webkit-input-placeholder,
.cid-twD8szy0uA textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-twD8szy0uA input:-moz-placeholder,
.cid-twD8szy0uA textarea:-moz-placeholder {
  color: #353535;
}
.cid-twD8szy0uA .jq-selectbox li,
.cid-twD8szy0uA .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-twD8szy0uA .jq-selectbox li:hover,
.cid-twD8szy0uA .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-twD8szy0uA .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-twD8szy0uA .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-twD8szy0uA .form-group,
.cid-twD8szy0uA .mbr-section-btn {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
@media (min-width: 992px) {
  .cid-twD8szy0uA .col-auto.mbr-section-btn .btn {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .cid-twD8szy0uA .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-twD8szy0uA .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 499px) {
  .cid-twD8szy0uA .form-block {
    padding: 1rem;
  }
}
.cid-twD8szy0uA H4 {
  color: #ffffff;
}
.cid-twD8szy0uA P {
  color: #ffffff;
}
.cid-twD8szy0uA LABEL {
  color: #f0f2f5;
}
.cid-twD8sAbCnn {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f0f2f5;
}
@media (max-width: 767px) {
  .cid-twD8sAbCnn .row {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-twD8sAbCnn .col-text {
    padding: 0 0 0 0;
  }
}
.cid-twD8sAbCnn .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-twD8sAbCnn .text-wrapper {
    text-align: center !important;
    padding-bottom: 54px;
  }
}
.cid-twD8sAbCnn .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #4479d9;
}
@media (max-width: 767px) {
  .cid-twD8sAbCnn .label-text {
    text-align: center !important;
  }
}
.cid-twD8sAbCnn .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-twD8sAbCnn .mbr-section-title {
    text-align: center !important;
  }
}
.cid-twD8sAbCnn .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-twD8sAbCnn .mbr-text {
    text-align: center !important;
  }
}
.cid-twD8sAbCnn .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-twD8sAbCnn .btn-container {
  width: 100%;
  margin-top: auto;
}
.cid-twD8sAbCnn .mbr-section-btn .btn {
  padding: 0;
}
.cid-twD8sAbCnn .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-twD8sAbCnn .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-twD8sAbCnn .col-cards {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cid-twD8sAbCnn .col-cards {
    padding: 0;
    padding-left: 1.8%;
  }
}
@media (min-width: 992px) {
  .cid-twD8sAbCnn .col-cards {
    padding-left: 5%;
  }
}
.cid-twD8sAbCnn .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  width: 100%;
}
.cid-twD8sAbCnn .cards-wrap:hover {
  background-color: #ffffff;
}
.cid-twD8sAbCnn .card {
  padding: 30px;
  background-color: #f0f2f5;
  transition: 0.4s all;
  border-radius: 0;
}
.cid-twD8sAbCnn .card:hover {
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-twD8sAbCnn .card:hover {
    transform: translate(0px, -10px);
  }
}
.cid-twD8sAbCnn .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-twD8sAbCnn .img-container {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-twD8sAbCnn .img-container {
    display: flex;
    justify-content: center;
  }
}
.cid-twD8sAbCnn .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  height: 93px;
  position: relative;
}
.cid-twD8sAbCnn .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-twD8sAbCnn .img-bg {
  background-color: #ffed27;
  min-width: 75%;
  height: 75%;
  border-radius: 50%;
  position: absolute;
}
.cid-twD8sAbCnn .card-title {
  color: #ffed27;
  margin-bottom: 8px;
}
.cid-twD8sAbCnn .card-text {
  color: #222222;
  margin-bottom: 0;
  text-align: left;
}
.cid-twD8sB3l6n {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/cozy-study-room-modern-apartment-1920x1280.jpg");
}
.cid-twD8sB3l6n .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-twD8sB3l6n .mbr-section-title {
  margin: 0;
  color: #ffffff;
}
.cid-twD8sB3l6n .mbr-section-subtitle {
  color: #ffffff;
}
.cid-twD8sB3l6n .card-img span {
  color: #4479d9;
}
.cid-twD8sB3l6n .row-item {
  margin-bottom: 2rem;
}
.cid-twD8sB3l6n .row-item:hover .wrapper {
  background: linear-gradient(90deg, #4479d9, #4479d9);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-twD8sB3l6n .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-twD8sB3l6n .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-twD8sB3l6n .wrapper {
  padding: 2.5rem 1rem;
  background: #f0f2f5;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-twD8sB3l6n .mbr-card-title,
.cid-twD8sB3l6n .card-img {
  color: #353535;
}
.cid-twD8sBWXDy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f0f2f5;
}
.cid-twD8sBWXDy .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-twD8sBWXDy .row {
    padding: 0 0.75rem;
  }
}
.cid-twD8sBWXDy .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-twD8sBWXDy .label-text {
  color: #4479d9;
}
.cid-twD8sBWXDy .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-twD8sBWXDy .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-twD8sBWXDy .card {
    padding: 0;
  }
}
.cid-twD8sBWXDy .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-twD8sBWXDy .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-twD8sBWXDy .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-twD8sBWXDy .card-text {
  color: #555555;
}
.cid-twD8sBWXDy .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-twD8sBWXDy .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-twD8sBWXDy .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-twD8sBWXDy .card-box {
    text-align: center;
  }
}
.cid-twD8sBWXDy .mbr-fallback-image.disabled {
  display: none;
}
.cid-twD8sBWXDy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twD8sCBVGi {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f0f2f5;
}
.cid-twD8sCBVGi .mbr-fallback-image.disabled {
  display: none;
}
.cid-twD8sCBVGi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twD8sCBVGi .mbr-text {
  color: #767676;
}
.cid-twD8sCBVGi .mbr-section-subtitle {
  color: #767676;
}
.cid-twD8sCBVGi .title .num {
  width: 100%;
  display: block;
}
.cid-twD8sCBVGi .title .card-title {
  z-index: 1;
}
.cid-twD8sCBVGi .num {
  color: #6592e6;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-twD8sCBVGi * {
    text-align: center !important;
  }
  .cid-twD8sCBVGi .content-column {
    margin-bottom: 2rem;
  }
}
.cid-twD8sCBVGi .card-text {
  color: #000000;
  text-align: left;
}
.cid-twD8sCBVGi .card-title,
.cid-twD8sCBVGi .card-img {
  text-align: left;
  color: #000000;
}
.cid-twD8sDCzii {
  background-color: #4479d9;
}
@media (min-width: 768px) {
  .cid-twD8sDCzii {
    background-image: url("../../../assets/images/repairman-doing-air-conditioner-service-1000x667.jpg");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 50% auto;
  }
}
.cid-twD8sDCzii .row {
  align-items: center;
}
.cid-twD8sDCzii .image-wrapper {
  padding: 1rem;
}
.cid-twD8sDCzii .col-text {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.cid-twD8sDCzii .col-text .radial-svg {
  display: none;
}
@media (min-width: 992px) {
  .cid-twD8sDCzii .col-text .radial-svg {
    display: block;
    position: absolute;
    top: 0;
    right: -90px;
    bottom: 0;
    height: 100%;
    width: 200px;
    z-index: 1;
  }
  .cid-twD8sDCzii .col-text .radial-svg path {
    fill: #4479d9;
  }
}
.cid-twD8sDCzii .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .cid-twD8sDCzii .text-wrapper {
    max-width: 400px;
  }
}
.cid-twD8sDCzii .label-text {
  width: 100%;
  color: #ffffff;
}
.cid-twD8sDCzii .mbr-section-title {
  margin-bottom: 1.425rem;
  width: 100%;
  color: #ffffff;
}
.cid-twD8sDCzii .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 12px;
}
.cid-twD8sDCzii .btn-container {
  width: 100%;
}
.cid-twD8sDCzii .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-twD8sDCzii .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-twD8sDCzii .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-twD8sDCzii .btn-white-outline {
  border: 1px solid currentColor;
}
.cid-twD8sDCzii .btn-white-outline:hover {
  color: #6592e6 !important;
  background: #ffffff !important;
}
.cid-twD8sDCzii .mbr-fallback-image.disabled {
  display: none;
}
.cid-twD8sDCzii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txao72iBLL {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f0f2f5;
}
.cid-txao72iBLL .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-txao72iBLL .row {
    padding: 0 0.75rem;
  }
}
.cid-txao72iBLL .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-txao72iBLL .label-text {
  color: #4479d9;
}
.cid-txao72iBLL .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-txao72iBLL .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-txao72iBLL .card {
    padding: 0;
  }
}
.cid-txao72iBLL .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-txao72iBLL .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-txao72iBLL .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-txao72iBLL .card-text {
  color: #555555;
}
.cid-txao72iBLL .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-txao72iBLL .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-txao72iBLL .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-txao72iBLL .card-box {
    text-align: center;
  }
}
.cid-txao72iBLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-txao72iBLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txao72iBLL .mbr-section-title {
  color: #4479d9;
}
.cid-txao7z4tDj {
  padding-top: 0px;
  padding-bottom: 180px;
  background-color: #f0f2f5;
}
.cid-txao7z4tDj .carousel-item {
  padding: 0 10%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-txao7z4tDj .carousel-item.active,
.cid-txao7z4tDj .carousel-item-next,
.cid-txao7z4tDj .carousel-item-prev {
  display: flex;
}
.cid-txao7z4tDj .img-box {
  position: relative;
  width: fit-content;
  margin: auto;
}
.cid-txao7z4tDj .carousel-controls .mbr-iconfont {
  font-family: Moririse2 !important;
  font-size: 1rem;
  font-weight: 900;
  transition: opacity .3s;
}
.cid-txao7z4tDj .carousel-controls a {
  transition: all .3s;
  border-radius: 50%;
  border: none;
  background-color: transparent;
}
.cid-txao7z4tDj .carousel-controls a span {
  color: #103178 !important;
  font-size: 35px !important;
}
.cid-txao7z4tDj .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-txao7z4tDj .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-txao7z4tDj .carousel-controls .carousel-control-next,
.cid-txao7z4tDj .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-txao7z4tDj .carousel-controls .carousel-control-next {
  bottom: auto;
  top: 44%;
}
.cid-txao7z4tDj .carousel-controls .carousel-control-prev {
  bottom: auto;
  top: 44%;
}
.cid-txao7z4tDj .author-box {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-txao7z4tDj .face {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
  object-fit: cover;
}
.cid-txao7z4tDj .author {
  margin: auto 0;
}
.cid-txao7z4tDj .mbr-text {
  margin-bottom: 34px !important;
}
.cid-txao7z4tDj h3,
.cid-txao7z4tDj h4 {
  margin: 0;
  padding: 0;
}
.cid-txao7z4tDj .mbr-bottom {
  color: #767676;
}
.cid-txao7z4tDj .box {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px!important;
}
@media (max-width: 992px) {
  .cid-txao7z4tDj .carousel-controls a span {
    bottom: auto;
    top: 30%;
  }
}
@media (max-width: 767px) {
  .cid-txao7z4tDj .carousel-controls a span {
    bottom: auto;
    top: 20%;
  }
}
.cid-txao7z4tDj .carousel-indicators {
  bottom: -65px;
}
@media (max-width: 786px) {
  .cid-txao7z4tDj .carousel-indicators {
    bottom: -75px;
  }
}
.cid-txao7z4tDj .carousel-indicators li {
  margin-right: 31px;
  margin-left: 31px;
  opacity: 1;
  width: 6px;
  height: 6px;
  max-width: 6px;
  max-height: 6px;
  min-width: 6px;
  min-height: 6px;
  background: #000000;
  border: none;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cid-txao7z4tDj .carousel-indicators li:hover {
  opacity: 1 !important;
}
.cid-txao7z4tDj .carousel-indicators li svg {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  z-index: 1;
  fill: none;
  color: #000000;
  stroke: none;
  overflow: visible;
}
.cid-txao7z4tDj .carousel-indicators li svg circle {
  stroke-dasharray: 110;
  stroke-dashoffset: 110;
  stroke: #000000;
  stroke-width: 1;
  transition: all 0.6s cubic-bezier(0.43, 0.41, 0.36, 0.9);
  transform: rotate(-145deg);
  transform-origin: center;
}
.cid-txao7z4tDj .carousel-indicators li.active {
  background: #000000;
}
.cid-txao7z4tDj .carousel-indicators li.active circle {
  stroke-dashoffset: 0;
  transform: rotate(55deg);
}
.cid-txao7z4tDj .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-txao7z4tDj .mbr-text,
.cid-txao7z4tDj .mbr-section-btn {
  text-align: left;
}
.cid-txao7z4tDj .mbr-fallback-image.disabled {
  display: none;
}
.cid-txao7z4tDj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txao7z4tDj H3 {
  text-align: center;
}
.cid-twD8sFxqEX {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #f0f2f5;
}
.cid-twD8sFxqEX .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-twD8sFxqEX .row {
    padding: 0 0.75rem;
  }
}
.cid-twD8sFxqEX .text-container {
  margin-bottom: 10px;
  padding: 0 !important;
}
.cid-twD8sFxqEX .label-text {
  color: #4479d9;
}
.cid-twD8sFxqEX .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-twD8sFxqEX .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-twD8sFxqEX .card {
    padding: 0;
  }
}
.cid-twD8sFxqEX .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-twD8sFxqEX .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-twD8sFxqEX .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-twD8sFxqEX .card-text {
  color: #555555;
}
.cid-twD8sFxqEX .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-twD8sFxqEX .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-twD8sFxqEX .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-twD8sFxqEX .card-box {
    text-align: center;
  }
}
.cid-twD8sFxqEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-twD8sFxqEX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twD8sFxqEX .mbr-section-title {
  color: #4479d9;
}
.cid-twD8sGipD6 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f0f2f5;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-twD8sGipD6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twD8sGipD6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-twD8sGipD6 .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-twD8sGipD6 .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-twD8sGipD6 .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-twD8sGipD6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twD8sGipD6 .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-twD8sGipD6 .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-twD8sGipD6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twD8sGipD6 .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-twD8sGipD6 .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-twD8sGipD6 .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-twD8sGipD6 .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-twD8sGipD6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twD8sGipD6 .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-twD8sGipD6 .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-twD8sGipD6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twD8sGipD6 .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-twD8sGipD6 .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-twD8sHolXE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-twD8sHolXE .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-twD8sHolXE .row {
    padding: 0 0.75rem;
  }
}
.cid-twD8sHolXE .text-container {
  margin-bottom: 30px;
  padding: 0 !important;
}
.cid-twD8sHolXE .label-text {
  color: #ffffff;
}
.cid-twD8sHolXE .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-twD8sHolXE .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-twD8sHolXE .card {
    padding: 0;
  }
}
.cid-twD8sHolXE .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-twD8sHolXE .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-twD8sHolXE .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-twD8sHolXE .card-text {
  color: #555555;
}
.cid-twD8sHolXE .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-twD8sHolXE .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-twD8sHolXE .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-twD8sHolXE .card-box {
    text-align: center;
  }
}
.cid-twD8sHolXE .mbr-fallback-image.disabled {
  display: none;
}
.cid-twD8sHolXE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twD8sHolXE .mbr-section-title {
  color: #ffffff;
}
.cid-twD8sIgarG {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #4479d9;
}
.cid-twD8sIgarG .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #103178;
  margin-bottom: 2rem;
}
.cid-twD8sIgarG .card-wrapper {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.cid-twD8sIgarG .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-twD8sIgarG .card {
    max-width: 14.2%;
  }
}
.cid-twD8sIgarG .card-title,
.cid-twD8sIgarG .iconfont-wrapper {
  color: #ffffff;
}
.cid-twD8sJnzut {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f0f2f5;
}
.cid-twD8sJnzut .card {
  background-color: transparent;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-twD8sJnzut .title-section .mbr-section-title {
  text-align: center;
  color: #4479d9;
}
.cid-twD8sJnzut .card-title {
  flex: 1 1 auto;
}
.cid-twD8sJnzut .accordion-body {
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.cid-twD8sJnzut .heading-acc[aria-expanded="true"] .acc-button {
  transform: rotate(-45deg);
}
.cid-twD8sJnzut .heading-acc:hover .acc-button {
  background-color: #4479d9;
}
.cid-twD8sJnzut .heading-acc:hover .acc-button .acc-button-line1,
.cid-twD8sJnzut .heading-acc:hover .acc-button .acc-button-line2 {
  background-color: white;
}
.cid-twD8sJnzut .acc-button-container .acc-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  transition: 0.3s linear;
}
.cid-twD8sJnzut .acc-button-container .acc-button .acc-button-line1,
.cid-twD8sJnzut .acc-button-container .acc-button .acc-button-line2 {
  transition: 0.3s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background-color: black;
  width: 2px;
  height: 22px;
  transform: translate(-50%, -50%);
}
.cid-twD8sJnzut .acc-button-container .acc-button .acc-button-line1 {
  transform: translate(-50%, -50%) rotate(90deg);
}
.cid-twD8sJnzut .mbr-fallback-image.disabled {
  display: none;
}
.cid-twD8sJnzut .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twD8sJnzut .mbr-section-subtitle {
  color: #353535;
}
.cid-twD8sKrlXp {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #eff0f6;
}
.cid-twD8sKrlXp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-twD8sKrlXp .text-content .mbr-subtitle {
  color: #4479d9;
}
.cid-twD8sKrlXp .text-content .mbr-section-title {
  color: #6592e6;
}
.cid-twD8sKrlXp .text-content .mbr-text {
  color: #47b5ed;
}
.cid-twD8sKrlXp .text-content .list-block {
  margin-top: 16px;
  padding-bottom: 16px;
}
.cid-twD8sKrlXp .text-content .list-block .card-img {
  width: auto;
}
.cid-twD8sKrlXp .text-content .list-block .card-img span {
  color: #4479d9;
  font-size: 1.5rem;
}
.cid-twD8sKrlXp .text-content .list-block .list-item-title {
  color: #6592e6;
  transition: all .3s linear 0s;
}
.cid-twD8sKrlXp .text-content .list-block .list-item-title:hover {
  color: #103178;
}
.cid-twD8sKrlXp .text-content .list-block .list-item-text {
  padding-top: 10px;
  color: #47b5ed;
  margin-bottom: 0;
}
.cid-twD8sKrlXp .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-twD8sKrlXp .text-content .social {
  font-size: 1.2rem;
}
.cid-twD8sKrlXp .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  transition: 0.3s all;
  color: #13287d;
}
.cid-twD8sKrlXp .text-content .social span:hover {
  color: #279e64;
  transition: 0.3s all;
}
.cid-twD8sKrlXp .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
}
.cid-twD8sKrlXp .list-block {
  position: relative;
}
.cid-twD8sKrlXp .list-block h4,
.cid-twD8sKrlXp .list-block p {
  padding-left: 2.625rem;
}
.cid-twD8sKrlXp .card-img {
  display: block;
}
.cid-twD8sKrlXp input,
.cid-twD8sKrlXp textarea {
  border-radius: 3px;
  min-height: 3rem;
  padding: 13px 20px !important;
  font-size: 13px;
  color: #40b0bf;
  height: 60px;
}
.cid-twD8sKrlXp .form-control,
.cid-twD8sKrlXp .field-input {
  padding: 13px 20px !important;
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-twD8sKrlXp .form-control:hover,
.cid-twD8sKrlXp .field-input:hover,
.cid-twD8sKrlXp .form-control:focus,
.cid-twD8sKrlXp .field-input:focus {
  background-color: #f7f7f7;
  border-color: #279e64;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-twD8sKrlXp .form-control:focus,
.cid-twD8sKrlXp .field-input:focus {
  box-shadow: 0 2px 9px 2px rgba(0, 0, 0, 0.15);
}
.cid-twD8sKrlXp input::-webkit-input-placeholder,
.cid-twD8sKrlXp textarea::-webkit-input-placeholder {
  color: #6d7a8c;
}
.cid-twD8sKrlXp input:-moz-placeholder,
.cid-twD8sKrlXp textarea:-moz-placeholder {
  color: #6d7a8c;
}
.cid-twD8sKrlXp .jq-selectbox li,
.cid-twD8sKrlXp .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-twD8sKrlXp .jq-selectbox li:hover,
.cid-twD8sKrlXp .jq-selectbox li.selected {
  background-color: #f7f7f7;
  color: #000000;
}
.cid-twD8sKrlXp .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-twD8sKrlXp .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f7f7f7;
}
.cid-twD8sKrlXp .mbr-form {
  max-width: 550px;
}
.cid-twD8sKrlXp .mbr-form .content-title {
  color: #6592e6;
  margin-bottom: 20px;
}
.cid-twD8sKrlXp .mbr-form .content-subtitle {
  color: #47b5ed;
}
.cid-twD8sKrlXp .mbr-form textarea {
  min-height: 100px;
  height: 194px;
}
.cid-twD8sKrlXp .mbr-form .btn {
  justify-content: space-between;
  border-radius: 30px;
  border-color: #6592e6;
  color: #6592e6;
  padding: 18px 42px;
  margin: 0 !important;
  margin-top: 7px !important;
}
.cid-twD8sKrlXp .mbr-form .btn-success:hover {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #fff !important;
}
@media (max-width: 991px) {
  .cid-twD8sKrlXp .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-twD8sKrlXp .mbr-section-title,
  .cid-twD8sKrlXp .content-title,
  .cid-twD8sKrlXp .mbr-section-btn {
    text-align: left;
  }
}
.cid-twD8sKrlXp .text-content .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-twD8sKrlXp .text-content .mbr-subtitle {
  text-align: center;
}
.cid-twD8sKrlXp .text-content .list-block .list-item-title {
  color: #103178;
}
.cid-twD8sKrlXp H3 {
  color: #103178;
}
.cid-twD8sKrlXp .mbr-form .content-title,
.cid-twD8sKrlXp .social {
  color: #353535;
}
.cid-twD8sKrlXp .form-check-input {
  min-height: 12px !important;
  padding: initial !important;
  height: 12px !important;
  width: 12px !important;
}
.cid-twD8sLAuAI {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f0f2f5;
}
.cid-twD8sLAuAI .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-twD8sLAuAI .mbr-section-title {
  margin: 0;
  color: #13287d;
}
.cid-twD8sLAuAI .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-twD8sLAuAI .card-img span {
  color: #279e64;
}
.cid-twD8sLAuAI .row-item {
  margin-bottom: 2rem;
}
.cid-twD8sLAuAI .row-item:hover .wrapper {
  background: linear-gradient(90deg, #279e64, #279e64);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-twD8sLAuAI .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-twD8sLAuAI .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-twD8sLAuAI .wrapper {
  padding: 2.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-twD8sLAuAI .mbr-card-title,
.cid-twD8sLAuAI .card-img {
  color: #4479d9;
}
.cid-txauMohmIC {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #353535;
}
.cid-txauMohmIC .listico {
  padding-right: 1rem;
  color: #dcdfe2;
  font-size: 0.3rem;
}
.cid-txauMohmIC .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-txauMohmIC .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-txauMohmIC .mbr-text {
  color: #444;
}
.cid-txauMohmIC h5 {
  margin-bottom: 0;
}
.cid-txauMohmIC .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-txauMohmIC .socicon {
  color: #9e9e9e;
  font-size: 0.6rem;
}
.cid-txauMohmIC .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-txauMohmIC .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-txauMohmIC .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txauMohmIC .social-list a:hover {
  opacity: .4;
}
.cid-txauMohmIC .media-container-row > div {
  padding: 0px;
}
.cid-txauMohmIC .text2 {
  color: #eeeff2;
  text-align: left;
}
.cid-txauMohmIC .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-txauMohmIC .group-title SPAN {
  color: #656565;
}
.cid-txauMohmIC .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-txauMohmIC .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-txauMohmIC h3 {
    margin-bottom: 10px;
  }
}
.cid-txauMohmIC .links SPAN {
  color: #9e9e9e;
}
.cid-txauMohmIC .links,
.cid-txauMohmIC .navbar-brand {
  color: #eeeff2;
}
.cid-txauMohmIC .links,
.cid-txauMohmIC .social-list {
  text-align: left;
}
.cid-twD8sNXbBH.popup-builder {
  background-color: #ffffff;
}
.cid-twD8sNXbBH.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-twD8sNXbBH.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-twD8sNXbBH .modal-content,
.cid-twD8sNXbBH .modal-dialog {
  height: auto;
}
.cid-twD8sNXbBH .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-twD8sNXbBH .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-twD8sNXbBH .form-wrapper .mbr-form .form-group,
  .cid-twD8sNXbBH .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-twD8sNXbBH .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-twD8sNXbBH .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-twD8sNXbBH .mbr-text {
  text-align: center;
}
.cid-twD8sNXbBH .pt-0 {
  padding-top: 0 !important;
}
.cid-twD8sNXbBH .pb-0 {
  padding-bottom: 0 !important;
}
.cid-twD8sNXbBH .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-twD8sNXbBH .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-twD8sNXbBH .modal-open {
  overflow: hidden;
}
.cid-twD8sNXbBH .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-twD8sNXbBH .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-twD8sNXbBH .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-twD8sNXbBH .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-twD8sNXbBH .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-twD8sNXbBH .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-twD8sNXbBH .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-twD8sNXbBH .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-twD8sNXbBH .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-twD8sNXbBH .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-twD8sNXbBH .modal-backdrop.fade {
  opacity: 0;
}
.cid-twD8sNXbBH .modal-backdrop.show {
  opacity: .5;
}
.cid-twD8sNXbBH .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-twD8sNXbBH .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-twD8sNXbBH .modal-header {
    padding: 1rem;
  }
}
.cid-twD8sNXbBH .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-twD8sNXbBH .modal-header .close svg {
  fill: #353535;
}
.cid-twD8sNXbBH .modal-header .close:hover {
  opacity: 1;
}
.cid-twD8sNXbBH .modal-header .close:focus {
  outline: none;
}
.cid-twD8sNXbBH .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-twD8sNXbBH .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-twD8sNXbBH .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-twD8sNXbBH .modal-body {
    padding: 1rem;
  }
}
.cid-twD8sNXbBH .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-twD8sNXbBH .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-twD8sNXbBH .modal-footer {
    padding: 1rem;
  }
}
.cid-twD8sNXbBH .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-twD8sNXbBH .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-twD8sNXbBH .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-twD8sNXbBH .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-twD8sNXbBH .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-twD8sNXbBH .modal-lg,
  .cid-twD8sNXbBH .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-twD8sNXbBH .modal-xl {
    max-width: 1140px;
  }
}
.cid-twD8sNXbBH .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-twD8sNXbBH .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-twD8sNXbBH .form-group {
  margin-bottom: 1rem;
}
.cid-twD8sNXbBH .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-twD8sNXbBH .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-twD8sNXbBH .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-twD8sNXbBH .mbr-section-btn {
  margin: 0;
}
.cid-twD8sNXbBH .mbr-section-btn .btn {
  margin: 0;
}
.cid-txL4gExX5R.popup-builder {
  background-color: #ffffff;
}
.cid-txL4gExX5R.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txL4gExX5R.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txL4gExX5R .modal-content,
.cid-txL4gExX5R .modal-dialog {
  height: auto;
}
.cid-txL4gExX5R .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txL4gExX5R .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txL4gExX5R .form-wrapper .mbr-form .form-group,
  .cid-txL4gExX5R .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txL4gExX5R .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txL4gExX5R .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txL4gExX5R .mbr-text {
  text-align: center;
}
.cid-txL4gExX5R .pt-0 {
  padding-top: 0 !important;
}
.cid-txL4gExX5R .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txL4gExX5R .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txL4gExX5R .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txL4gExX5R .modal-open {
  overflow: hidden;
}
.cid-txL4gExX5R .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txL4gExX5R .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txL4gExX5R .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txL4gExX5R .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txL4gExX5R .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txL4gExX5R .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txL4gExX5R .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txL4gExX5R .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txL4gExX5R .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txL4gExX5R .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txL4gExX5R .modal-backdrop.fade {
  opacity: 0;
}
.cid-txL4gExX5R .modal-backdrop.show {
  opacity: .5;
}
.cid-txL4gExX5R .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txL4gExX5R .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txL4gExX5R .modal-header {
    padding: 1rem;
  }
}
.cid-txL4gExX5R .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txL4gExX5R .modal-header .close svg {
  fill: #353535;
}
.cid-txL4gExX5R .modal-header .close:hover {
  opacity: 1;
}
.cid-txL4gExX5R .modal-header .close:focus {
  outline: none;
}
.cid-txL4gExX5R .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-txL4gExX5R .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txL4gExX5R .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txL4gExX5R .modal-body {
    padding: 1rem;
  }
}
.cid-txL4gExX5R .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txL4gExX5R .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txL4gExX5R .modal-footer {
    padding: 1rem;
  }
}
.cid-txL4gExX5R .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txL4gExX5R .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txL4gExX5R .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txL4gExX5R .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txL4gExX5R .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txL4gExX5R .modal-lg,
  .cid-txL4gExX5R .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txL4gExX5R .modal-xl {
    max-width: 1140px;
  }
}
.cid-txL4gExX5R .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txL4gExX5R .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txL4gExX5R .form-group {
  margin-bottom: 1rem;
}
.cid-txL4gExX5R .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txL4gExX5R .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txL4gExX5R .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txL4gExX5R .mbr-section-btn {
  margin: 0;
}
.cid-txL4gExX5R .mbr-section-btn .btn {
  margin: 0;
}
