body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Questrial', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Karla', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Questrial', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Karla', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 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.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))));
  }
  .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: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((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: #e4582f !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: #e4582f !important;
  border-color: #e4582f !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: #a73616 !important;
  border-color: #a73616 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a73616 !important;
  border-color: #a73616 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d2390c !important;
  border-color: #d2390c !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: #802307 !important;
  border-color: #802307 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #802307 !important;
  border-color: #802307 !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: #e4582f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a73616 !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: #e4582f !important;
  border-color: #e4582f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d2390c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #802307 !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: #d2390c !important;
  border-color: #d2390c !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: #e4582f !important;
}
.text-secondary {
  color: #d2390c !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: #993214 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #721f06 !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: #e4582f;
}
.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-gallery-filter li.active .btn {
  background-color: #e4582f;
  border-color: #e4582f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e4582f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbe9e4;
}
.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: 'Karla', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #e4582f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Karla', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #e4582f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e4582f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e4582f;
}
.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: #e4582f;
  border-bottom-color: #e4582f;
}
.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: #e4582f !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: #d2390c !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='%23e4582f' %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-tNf2LB0aRW {
  background-image: url("../../../assets/images/colsa-9.jpeg");
}
.cid-tNf2LB0aRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNf2LB0aRW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNf2LB0aRW .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-tNf2LB0aRW .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 30px;
}
.cid-tNf2LB0aRW .mbr-text {
  color: #878e99;
  margin-top: 0;
}
.cid-tNf2LB0aRW .mbr-section-btn {
  margin-top: 30px;
}
.cid-tNf2LB0aRW .mbr-section-btn .btn {
  box-shadow: none !important;
}
.cid-tNf2LB0aRW .mbr-text,
.cid-tNf2LB0aRW .mbr-section-btn {
  color: #ffffff;
}
.cid-tNf2d0JQXn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/empresa-de-manutencao-de-extintores-de-incendio.jpg");
}
.cid-tNf2d0JQXn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNf2d0JQXn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNf2d0JQXn .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-tNf2d0JQXn .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-tNf2d0JQXn .mbr-text {
  color: #FFFFFF;
}
.cid-tNf2d0JQXn .mbr-section-btn {
  margin-top: 18px;
}
.cid-tMLQJJF4Zm {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f1f1f2;
}
.cid-tMLQJJF4Zm .position-relative::after {
  content: '';
  position: absolute;
  top: -5rem;
  right: 0;
  width: 70%;
  height: 125%;
  background-color: #ffffff;
  border-radius: 0 0 50% 0;
}
@media (max-width: 992px) {
  .cid-tMLQJJF4Zm .position-relative::after {
    display: none;
  }
}
.cid-tMLQJJF4Zm .item:focus,
.cid-tMLQJJF4Zm span:focus {
  outline: none;
}
.cid-tMLQJJF4Zm .item-wrapper {
  position: relative;
}
.cid-tMLQJJF4Zm .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 1000px;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .cid-tMLQJJF4Zm .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tMLQJJF4Zm .embla__button--next,
.cid-tMLQJJF4Zm .embla__button--prev {
  display: flex;
}
.cid-tMLQJJF4Zm .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 30px;
  background: transparent;
  color: #e4582f;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tMLQJJF4Zm .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tMLQJJF4Zm .embla__button:hover {
  background: transparent;
  color: #e4582f;
}
.cid-tMLQJJF4Zm .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 425px) {
  .cid-tMLQJJF4Zm .embla__button.embla__button--prev {
    margin-left: 0;
    bottom: -4rem;
  }
}
.cid-tMLQJJF4Zm .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 425px) {
  .cid-tMLQJJF4Zm .embla__button.embla__button--next {
    margin-right: 0;
    bottom: -4rem;
  }
}
@media (max-width: 767px) {
  .cid-tMLQJJF4Zm .embla__button {
    top: auto;
  }
}
.cid-tMLQJJF4Zm .embla {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tMLQJJF4Zm .embla__viewport {
  overflow: hidden;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-tMLQJJF4Zm .embla__viewport {
    width: 100%;
  }
}
.cid-tMLQJJF4Zm .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tMLQJJF4Zm .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tMLQJJF4Zm .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tMLQJJF4Zm .slide-content {
  display: flex;
  z-index: 1;
}
@media (max-width: 1150px) {
  .cid-tMLQJJF4Zm .slide-content {
    padding: 0 80px;
  }
}
@media (max-width: 992px) {
  .cid-tMLQJJF4Zm .slide-content {
    display: block;
    padding: 0 30%;
  }
}
.cid-tMLQJJF4Zm .slide-content .item-image {
  padding: 0 67px;
  margin-bottom: 25px;
}
@media (max-width: 425px) {
  .cid-tMLQJJF4Zm .slide-content .item-image {
    padding: 0 90px;
  }
}
.cid-tMLQJJF4Zm .slide-content .item-image .image-wrapper {
  position: relative;
}
.cid-tMLQJJF4Zm .slide-content .item-image .image-wrapper img {
  width: 316px;
  height: 420px;
  object-fit: cover;
  border-radius: 0 0 50% 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tMLQJJF4Zm .slide-content .item-image .image-wrapper img {
    width: auto;
    max-height: 300px;
  }
}
.cid-tMLQJJF4Zm .slide-content .item-image .image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -2rem;
  display: block;
  width: 129px;
  height: 129px;
  background-color: transparent;
  border-radius: 100%;
  border: 18px solid #e4582f;
}
.cid-tMLQJJF4Zm .slide-content .item-image .title-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tMLQJJF4Zm .slide-content .item-image .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tMLQJJF4Zm .slide-content .item-text {
  padding-right: 67px;
}
@media (max-width: 992px) {
  .cid-tMLQJJF4Zm .slide-content .item-text {
    padding: 0 47px;
  }
}
@media (max-width: 425px) {
  .cid-tMLQJJF4Zm .slide-content .item-text {
    padding: 0 90px;
  }
}
.cid-tMLQJJF4Zm .slide-content .item-text span {
  font-size: 70px;
  margin-bottom: 8px;
  color: #f1f1f2;
}
@media (max-width: 992px) {
  .cid-tMLQJJF4Zm .slide-content .item-text span {
    display: none;
  }
}
.cid-tMLQJJF4Zm .slide-content .item-text .mbr-text {
  margin-bottom: 0;
}
.cid-tMLQJJF4Zm .mbr-name {
  color: #1e4381;
}
.cid-tMLQJJF4Zm .mbr-desc {
  color: #1e4381;
}
.cid-tMLQJJF4Zm .mbr-text {
  color: #000000;
}
.cid-tMLUsKuI9V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefec;
  overflow: hidden;
}
.cid-tMLUsKuI9V .col-title {
  position: relative;
  max-width: 1200px;
  z-index: 10;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-tMLUsKuI9V .col-title {
    margin-bottom: 40px;
  }
}
.cid-tMLUsKuI9V .mbr-section-title {
  color: #d2390c;
}
.cid-tMLUsKuI9V .mbr-section-main-subtitle {
  color: #5F6AD4;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-tMLUsKuI9V .mbr-section-main-subtitle {
    margin-top: 16px;
  }
}
.cid-tMLUsKuI9V .col-carousel {
  max-width: 100%;
  width: 100%;
}
.cid-tMLUsKuI9V .carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 520px;
  margin-bottom: 60px;
}
.cid-tMLUsKuI9V .carousel img {
  max-height: 520px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tMLUsKuI9V .carousel {
    height: 380px;
  }
  .cid-tMLUsKuI9V .carousel img {
    max-height: 380px;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .cid-tMLUsKuI9V .carousel {
    height: 320px;
  }
  .cid-tMLUsKuI9V .carousel img {
    max-height: 320px;
  }
}
.cid-tMLUsKuI9V .carousel-inner {
  display: flex;
  align-items: center;
  max-width: 1160px;
}
@media (max-width: 1199px) {
  .cid-tMLUsKuI9V .carousel-inner {
    max-width: 940px;
  }
}
@media (max-width: 991px) {
  .cid-tMLUsKuI9V .carousel-inner {
    max-width: 618px;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .cid-tMLUsKuI9V .carousel-inner {
    max-width: 460px;
  }
}
.cid-tMLUsKuI9V .carousel-item {
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
}
.cid-tMLUsKuI9V .item-wrapper {
  width: 100%;
}
.cid-tMLUsKuI9V .carousel-caption {
  bottom: 30px;
}
.cid-tMLUsKuI9V .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tMLUsKuI9V .mbr-section-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tMLUsKuI9V .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tMLUsKuI9V .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tMLUsKuI9V .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tMLUsKuI9V .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: #e4582f;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1 !important;
}
@media (max-width: 575px) {
  .cid-tMLUsKuI9V .carousel-control {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
}
.cid-tMLUsKuI9V .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-tMLUsKuI9V .carousel-control.carousel-control-next {
  right: 0;
}
.cid-tMLUsKuI9V .carousel-control:hover {
  background-color: #CECEC1;
  color: #2B2B2B !important;
}
.cid-tMLUsKuI9V .carousel-indicators {
  position: absolute;
  bottom: -60px;
  margin-bottom: 0 !important;
}
.cid-tMLUsKuI9V .carousel-indicators li {
  max-width: 10px;
  height: 10px !important;
  width: 10px !important;
  max-height: 10px;
  margin: 10px 5px;
  background-color: #CECEC1;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
  border: 0 !important;
}
.cid-tMLUsKuI9V .carousel-indicators li.active,
.cid-tMLUsKuI9V .carousel-indicators li:hover {
  background-color: #e4582f;
  height: 10px !important;
  width: 10px !important;
}
.cid-tMLUsKuI9V .carousel-indicators li::after,
.cid-tMLUsKuI9V .carousel-indicators li::before {
  content: none;
}
.cid-tMLUsKuI9V .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-tMLUsKuI9V .container,
.cid-tMLUsKuI9V .container-fluid {
  position: relative;
}
.cid-tMLUsKuI9V .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 200px;
  height: 200px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 767px) {
  .cid-tMLUsKuI9V .circle-blur {
    width: 200px;
    height: 200px;
  }
}
.cid-tMLUsKuI9V .circle-blur1 {
  top: 0;
  right: 30%;
  background-image: linear-gradient(132deg, #77bbdf 27%, #77bbdf 50%, #77bbdf 79%);
}
.cid-tMLUsKuI9V .circle-blur2 {
  top: 12%;
  right: 20%;
  background-image: linear-gradient(132deg, #a47ee3 27%, #a47ee3 50%, #a47ee3 79%);
}
.cid-tMLUsKuI9V .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tMAyxOsLlL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMAyxOsLlL nav.navbar {
  position: fixed;
}
.cid-tMAyxOsLlL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMAyxOsLlL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMAyxOsLlL .dropdown-item:hover,
.cid-tMAyxOsLlL .dropdown-item:focus {
  background: #e4582f !important;
  color: white !important;
}
.cid-tMAyxOsLlL .dropdown-item:hover span {
  color: white;
}
.cid-tMAyxOsLlL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMAyxOsLlL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMAyxOsLlL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMAyxOsLlL .nav-link {
  position: relative;
}
.cid-tMAyxOsLlL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMAyxOsLlL .container {
    flex-wrap: nowrap;
  }
}
.cid-tMAyxOsLlL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMAyxOsLlL .dropdown-menu,
.cid-tMAyxOsLlL .navbar.opened {
  background: #ffffff !important;
}
.cid-tMAyxOsLlL .nav-item:focus,
.cid-tMAyxOsLlL .nav-link:focus {
  outline: none;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMAyxOsLlL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMAyxOsLlL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMAyxOsLlL .navbar.opened {
  transition: all 0.3s;
}
.cid-tMAyxOsLlL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMAyxOsLlL .navbar .navbar-logo img {
  width: auto;
}
.cid-tMAyxOsLlL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMAyxOsLlL .navbar.collapsed {
  justify-content: center;
}
.cid-tMAyxOsLlL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMAyxOsLlL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMAyxOsLlL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMAyxOsLlL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMAyxOsLlL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMAyxOsLlL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMAyxOsLlL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMAyxOsLlL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMAyxOsLlL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMAyxOsLlL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMAyxOsLlL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMAyxOsLlL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMAyxOsLlL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMAyxOsLlL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMAyxOsLlL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMAyxOsLlL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMAyxOsLlL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMAyxOsLlL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMAyxOsLlL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMAyxOsLlL .dropdown-item.active,
.cid-tMAyxOsLlL .dropdown-item:active {
  background-color: transparent;
}
.cid-tMAyxOsLlL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMAyxOsLlL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMAyxOsLlL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMAyxOsLlL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMAyxOsLlL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMAyxOsLlL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMAyxOsLlL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMAyxOsLlL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMAyxOsLlL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMAyxOsLlL .navbar {
    height: 70px;
  }
  .cid-tMAyxOsLlL .navbar.opened {
    height: auto;
  }
  .cid-tMAyxOsLlL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMAQ2d4y0S {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tMAQ2d4y0S .image-wrapper {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
.cid-tMAQ2d4y0S img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tMAQ2d4y0S .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tMAQ2d4y0S .mbr-section-title {
  color: #d2390c;
  text-align: center;
}
.cid-tMAQ2d4y0S .mbr-text {
  color: #6c7577;
  text-align: center;
}
.cid-tMAQ2d4y0S .mbr-description {
  color: #6c7577;
}
.cid-tMAQ2d4y0S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMAQ2d4y0S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMAQht7vSD {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/construction-1.jpeg");
}
.cid-tMAQht7vSD .image-h {
  height: 17rem;
}
.cid-tMAQht7vSD .image-h {
  max-height: 100vh;
  object-fit: cover;
}
.cid-tMLG43eVbn {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMLG43eVbn img {
  width: 110px;
  margin: auto;
}
.cid-tMLG43eVbn .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 0.5rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tMLG43eVbn .card {
    max-width: 16.6%;
  }
}
.cid-tMLG43eVbn .mbr-section-title {
  color: #d2390c;
}
.cid-tMKzKKZ0Vv {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-tMKzKKZ0Vv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMKzKKZ0Vv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMKzKKZ0Vv .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tMKzKKZ0Vv .row {
    text-align: center;
  }
  .cid-tMKzKKZ0Vv .row > div {
    margin: auto;
  }
  .cid-tMKzKKZ0Vv .social-row {
    justify-content: center;
  }
}
.cid-tMKzKKZ0Vv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tMKzKKZ0Vv .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tMKzKKZ0Vv .list {
    margin-bottom: 0rem;
  }
}
.cid-tMKzKKZ0Vv .mbr-text {
  color: #bbbbbb;
}
.cid-tMKzKKZ0Vv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tMKzKKZ0Vv .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tMAyxOsLlL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMAyxOsLlL nav.navbar {
  position: fixed;
}
.cid-tMAyxOsLlL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMAyxOsLlL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMAyxOsLlL .dropdown-item:hover,
.cid-tMAyxOsLlL .dropdown-item:focus {
  background: #e4582f !important;
  color: white !important;
}
.cid-tMAyxOsLlL .dropdown-item:hover span {
  color: white;
}
.cid-tMAyxOsLlL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMAyxOsLlL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMAyxOsLlL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMAyxOsLlL .nav-link {
  position: relative;
}
.cid-tMAyxOsLlL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMAyxOsLlL .container {
    flex-wrap: nowrap;
  }
}
.cid-tMAyxOsLlL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMAyxOsLlL .dropdown-menu,
.cid-tMAyxOsLlL .navbar.opened {
  background: #ffffff !important;
}
.cid-tMAyxOsLlL .nav-item:focus,
.cid-tMAyxOsLlL .nav-link:focus {
  outline: none;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMAyxOsLlL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMAyxOsLlL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMAyxOsLlL .navbar.opened {
  transition: all 0.3s;
}
.cid-tMAyxOsLlL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMAyxOsLlL .navbar .navbar-logo img {
  width: auto;
}
.cid-tMAyxOsLlL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMAyxOsLlL .navbar.collapsed {
  justify-content: center;
}
.cid-tMAyxOsLlL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMAyxOsLlL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMAyxOsLlL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMAyxOsLlL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMAyxOsLlL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMAyxOsLlL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMAyxOsLlL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMAyxOsLlL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMAyxOsLlL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMAyxOsLlL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMAyxOsLlL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMAyxOsLlL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMAyxOsLlL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMAyxOsLlL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMAyxOsLlL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMAyxOsLlL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMAyxOsLlL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMAyxOsLlL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMAyxOsLlL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMAyxOsLlL .dropdown-item.active,
.cid-tMAyxOsLlL .dropdown-item:active {
  background-color: transparent;
}
.cid-tMAyxOsLlL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMAyxOsLlL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMAyxOsLlL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMAyxOsLlL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMAyxOsLlL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMAyxOsLlL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMAyxOsLlL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMAyxOsLlL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMAyxOsLlL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMAyxOsLlL .navbar {
    height: 70px;
  }
  .cid-tMAyxOsLlL .navbar.opened {
    height: auto;
  }
  .cid-tMAyxOsLlL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMMMoElFdU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/colsa.jpg");
}
.cid-tMMMoElFdU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tMMMoElFdU form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-tMMMoElFdU form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tMMMoElFdU form.mbr-form {
    padding: 1rem;
  }
}
.cid-tMMMoElFdU form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tMMMoElFdU form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tMMMoElFdU .mbr-section-title {
  color: #232323;
}
.cid-tMMLZGZhsS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMMLZGZhsS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMMLZGZhsS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMMLZGZhsS .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tMMLZGZhsS .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tMMLZGZhsS .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tMMLZGZhsS .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tMMLZGZhsS .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e4582f;
}
.cid-tMMLZGZhsS .mbr-section-title {
  color: #d94114;
}
.cid-tMMLZGZhsS P {
  color: #d2390c;
}
.cid-tMKzKKZ0Vv {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-tMKzKKZ0Vv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMKzKKZ0Vv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMKzKKZ0Vv .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tMKzKKZ0Vv .row {
    text-align: center;
  }
  .cid-tMKzKKZ0Vv .row > div {
    margin: auto;
  }
  .cid-tMKzKKZ0Vv .social-row {
    justify-content: center;
  }
}
.cid-tMKzKKZ0Vv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tMKzKKZ0Vv .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tMKzKKZ0Vv .list {
    margin-bottom: 0rem;
  }
}
.cid-tMKzKKZ0Vv .mbr-text {
  color: #bbbbbb;
}
.cid-tMKzKKZ0Vv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tMKzKKZ0Vv .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tMMDLnE8bG {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/best-civil-contractors-in-bangalore.jpg");
}
.cid-tMMDLnE8bG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMMDLnE8bG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMMDLnE8bG .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-tMMDLnE8bG .col {
    width: 40%;
  }
}
.cid-tMMDLnE8bG .card-wrapper {
  padding: 4rem;
  border-radius: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tMMDLnE8bG .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-tMMDLnE8bG .card-wrapper h1,
.cid-tMMDLnE8bG .card-wrapper h2,
.cid-tMMDLnE8bG .card-wrapper p,
.cid-tMMDLnE8bG .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-tMMDLnE8bG .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #d2390c;
  opacity: 0.8;
}
.cid-tMMDLnE8bG .mbr-section-title {
  color: #ffffff;
}
.cid-tMMDLnE8bG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tMMDLnE8bG .mbr-text,
.cid-tMMDLnE8bG .mbr-section-btn {
  color: #ffffff;
}
.cid-tMAyxOsLlL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMAyxOsLlL nav.navbar {
  position: fixed;
}
.cid-tMAyxOsLlL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMAyxOsLlL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMAyxOsLlL .dropdown-item:hover,
.cid-tMAyxOsLlL .dropdown-item:focus {
  background: #e4582f !important;
  color: white !important;
}
.cid-tMAyxOsLlL .dropdown-item:hover span {
  color: white;
}
.cid-tMAyxOsLlL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMAyxOsLlL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMAyxOsLlL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMAyxOsLlL .nav-link {
  position: relative;
}
.cid-tMAyxOsLlL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMAyxOsLlL .container {
    flex-wrap: nowrap;
  }
}
.cid-tMAyxOsLlL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMAyxOsLlL .dropdown-menu,
.cid-tMAyxOsLlL .navbar.opened {
  background: #ffffff !important;
}
.cid-tMAyxOsLlL .nav-item:focus,
.cid-tMAyxOsLlL .nav-link:focus {
  outline: none;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMAyxOsLlL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMAyxOsLlL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMAyxOsLlL .navbar.opened {
  transition: all 0.3s;
}
.cid-tMAyxOsLlL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMAyxOsLlL .navbar .navbar-logo img {
  width: auto;
}
.cid-tMAyxOsLlL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMAyxOsLlL .navbar.collapsed {
  justify-content: center;
}
.cid-tMAyxOsLlL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMAyxOsLlL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMAyxOsLlL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMAyxOsLlL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMAyxOsLlL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMAyxOsLlL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMAyxOsLlL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMAyxOsLlL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMAyxOsLlL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMAyxOsLlL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMAyxOsLlL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMAyxOsLlL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMAyxOsLlL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMAyxOsLlL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMAyxOsLlL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMAyxOsLlL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMAyxOsLlL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMAyxOsLlL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMAyxOsLlL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMAyxOsLlL .dropdown-item.active,
.cid-tMAyxOsLlL .dropdown-item:active {
  background-color: transparent;
}
.cid-tMAyxOsLlL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMAyxOsLlL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMAyxOsLlL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMAyxOsLlL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMAyxOsLlL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMAyxOsLlL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMAyxOsLlL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMAyxOsLlL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMAyxOsLlL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMAyxOsLlL .navbar {
    height: 70px;
  }
  .cid-tMAyxOsLlL .navbar.opened {
    height: auto;
  }
  .cid-tMAyxOsLlL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMMDcuoc5V {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #e4582f;
  position: relative;
}
.cid-tMMDcuoc5V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMMDcuoc5V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMMDcuoc5V .container,
.cid-tMMDcuoc5V .container-fluid {
  position: static;
}
.cid-tMMDcuoc5V .mbr-section-title {
  margin-bottom: 25px;
  color: #ffffff;
}
@media (max-width: 1199px) {
  .cid-tMMDcuoc5V .mbr-section-title {
    margin-bottom: 5px;
  }
}
.cid-tMMDcuoc5V .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tMMDcuoc5V .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tMMDcuoc5V .mbr-text {
    margin-top: 18px;
  }
}
.cid-tMMDcuoc5V .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tMMDcuoc5V .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-tMMDcuoc5V .item-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.cid-tMMDcuoc5V .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-tMMDcuoc5V .item-img {
    display: none;
  }
}
.cid-tMMDcuoc5V .mbr-text,
.cid-tMMDcuoc5V .mbr-section-btn {
  color: #ffffff;
}
.cid-tNceWJbhw4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e16d1a;
  position: relative;
}
.cid-tNceWJbhw4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNceWJbhw4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNceWJbhw4 .container,
.cid-tNceWJbhw4 .container-fluid {
  position: static;
}
.cid-tNceWJbhw4 .mbr-section-title {
  margin-bottom: 25px;
  color: #ffffff;
}
@media (max-width: 1199px) {
  .cid-tNceWJbhw4 .mbr-section-title {
    margin-bottom: 5px;
  }
}
.cid-tNceWJbhw4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tNceWJbhw4 .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tNceWJbhw4 .mbr-text {
    margin-top: 18px;
  }
}
.cid-tNceWJbhw4 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tNceWJbhw4 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-tNceWJbhw4 .item-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.cid-tNceWJbhw4 .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-tNceWJbhw4 .item-img {
    display: none;
  }
}
.cid-tNceWJbhw4 .mbr-text,
.cid-tNceWJbhw4 .mbr-section-btn {
  color: #ffffff;
}
.cid-tMMDCRhR63 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d94114;
}
.cid-tMMDCRhR63 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMMDCRhR63 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMMDCRhR63 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tMMDCRhR63 .container-fluid {
    padding: 0 12px;
  }
}
.cid-tMMDCRhR63 .container-fluid .row {
  padding: 0;
}
.cid-tMMDCRhR63 .row {
  border: 3px solid #ffffff;
  border-radius: 5px;
}
.cid-tMMDCRhR63 .card {
  padding: 80px 28px;
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tMMDCRhR63 .card {
    border-left: 1px solid #ffffff;
  }
}
@media (max-width: 992px) {
  .cid-tMMDCRhR63 .card {
    padding: 48px 20px;
  }
}
.cid-tMMDCRhR63 .card .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tMMDCRhR63 .card .image-wrapper .image-main {
  display: block;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  position: static;
  width: 50%;
}
@media (max-width: 1200px) {
  .cid-tMMDCRhR63 .card .image-wrapper .image-main {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-tMMDCRhR63 .card .image-wrapper .image-main {
    height: 250px;
  }
}
.cid-tMMDCRhR63 .card .image-wrapper img {
  position: absolute;
  top: 5rem;
  right: 6rem;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-tMMDCRhR63 .card .image-wrapper img {
    right: 0;
  }
}
.cid-tMMDCRhR63 .card .image-wrapper img:nth-child(2) {
  right: auto;
  top: 11rem;
  left: 6rem;
}
@media (max-width: 992px) {
  .cid-tMMDCRhR63 .card .image-wrapper img:nth-child(2) {
    top: 6rem;
    left: 0;
  }
}
.cid-tMMDCRhR63 .card .image-wrapper img:last-child {
  top: auto;
  bottom: 8rem;
}
@media (max-width: 992px) {
  .cid-tMMDCRhR63 .card .image-wrapper img:last-child {
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .cid-tMMDCRhR63 .card .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
.cid-tMMDCRhR63 .card:last-child {
  justify-content: flex-end;
  height: auto;
}
@media (min-width: 992px) {
  .cid-tMMDCRhR63 .card:last-child {
    border-left: none;
    border-right: 2px solid #ffffff;
  }
}
.cid-tMMDCRhR63 .card .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-tMMDCRhR63 .card .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-tMMDCRhR63 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tMMDCRhR63 .card .title-wrapper .mbr-section-subtitle {
  line-height: 48px;
  margin-bottom: 0;
}
.cid-tMMDCRhR63 .card .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tMMDCRhR63 .card .text-wrapper .mbr-section-btn .btn {
    width: 95%;
    min-height: 83px;
    border-radius: 70px;
  }
}
.cid-tMMDCRhR63 .mbr-section-title {
  color: #d2d2d2;
  text-align: center;
}
.cid-tMMDCRhR63 .mbr-section-subtitle {
  color: #d2d2d2;
  text-align: right;
}
.cid-tMMDCRhR63 .mbr-text {
  color: #d2d2d2;
  text-align: center;
}
.cid-tMMDNK8ZE1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e4582f;
}
.cid-tMMDNK8ZE1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMMDNK8ZE1 .mbr-section-title {
  padding-bottom: 5rem;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tMMDNK8ZE1 .mbr-section-title {
    padding-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tMMDNK8ZE1 .text-wrapper {
    padding: 0 3rem;
  }
}
.cid-tMMDNK8ZE1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMMDNK8ZE1 img {
  border-radius: 3rem;
}
.cid-tMMDNK8ZE1 .mbr-text,
.cid-tMMDNK8ZE1 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tMMFlZUqwF {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tMMFlZUqwF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMMFlZUqwF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMMFlZUqwF .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMMFlZUqwF .row {
    flex-wrap: wrap;
  }
}
.cid-tMMFlZUqwF .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tMMFlZUqwF .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tMMFlZUqwF .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tMMFlZUqwF .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-tMMFlZUqwF .mbr-section-title {
  color: #353535;
}
.cid-tMMFlZUqwF .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tMMFlZUqwF .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tMMFlZUqwF .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tMMFlZUqwF .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tMMFlZUqwF .mbr-text {
    margin-top: 12px;
  }
}
.cid-tMMFlZUqwF .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tMMFlZUqwF .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tMMFlZUqwF .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tMMFlZUqwF .col-img {
    width: 350px;
  }
}
.cid-tMMFlZUqwF .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tMMFlZUqwF .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tMMFlZUqwF .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tMMFlZUqwF .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tMMFlZUqwF .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tMMFlZUqwF .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tMMFlZUqwF .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tMMFlZUqwF .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tMMFlZUqwF .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tMKzKKZ0Vv {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-tMKzKKZ0Vv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMKzKKZ0Vv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMKzKKZ0Vv .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tMKzKKZ0Vv .row {
    text-align: center;
  }
  .cid-tMKzKKZ0Vv .row > div {
    margin: auto;
  }
  .cid-tMKzKKZ0Vv .social-row {
    justify-content: center;
  }
}
.cid-tMKzKKZ0Vv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tMKzKKZ0Vv .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tMKzKKZ0Vv .list {
    margin-bottom: 0rem;
  }
}
.cid-tMKzKKZ0Vv .mbr-text {
  color: #bbbbbb;
}
.cid-tMKzKKZ0Vv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tMKzKKZ0Vv .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tMLKG5qs55 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tMLKG5qs55 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMLKG5qs55 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMLKG5qs55 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMLKG5qs55 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tMLKG5qs55 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tMLKGRwbg3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tMLKGRwbg3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMLKGRwbg3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMLKGRwbg3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMLKGRwbg3 .row {
  flex-direction: row-reverse;
}
.cid-tMLKGRwbg3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tMLKGRwbg3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tMLKpYcQEK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fdfcfa;
}
.cid-tMLKpYcQEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMLKpYcQEK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMLKpYcQEK .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tMLKpYcQEK .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tMLKpYcQEK .container {
    padding: 0;
  }
}
.cid-tMLKpYcQEK .row {
  justify-content: center;
  margin: 0;
}
.cid-tMLKpYcQEK .card {
  border-radius: 0;
  padding: 0;
}
.cid-tMLKpYcQEK .card .card-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tMLKpYcQEK .card .card-wrapper img {
    height: 300px;
  }
}
.cid-tNchh6dULq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNchh6dULq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNchh6dULq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNchh6dULq .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tNchh6dULq .mbr-section-title {
  color: #24262b;
}
.cid-tNchh6dULq .mbr-section-subtitle {
  color: #24262b;
}
.cid-tNchh6dULq .items-row {
  row-gap: 32px;
}
.cid-tNchh6dULq .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-tNchh6dULq .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-tNchh6dULq .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-tNchh6dULq .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-tNchh6dULq .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-tNchh6dULq .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tNchh6dULq .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-tNchh6dULq .mbr-item-subtitle {
  color: #24262b;
}
.cid-tNchh6dULq .carousel-control,
.cid-tNchh6dULq .close {
  background: #1b1b1b;
}
.cid-tNchh6dULq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tNchh6dULq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tNchh6dULq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tNchh6dULq .carousel-control-next span {
  margin-left: 5px;
}
.cid-tNchh6dULq .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tNchh6dULq .close::before {
  content: '\e91a';
}
.cid-tNchh6dULq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tNchh6dULq .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tNchh6dULq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNchh6dULq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNchh6dULq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tNchh6dULq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tNchh6dULq .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tNchh6dULq .carousel-indicators li.active,
.cid-tNchh6dULq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tNchh6dULq .carousel-indicators li::after,
.cid-tNchh6dULq .carousel-indicators li::before {
  content: none;
}
.cid-tNchh6dULq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tNchh6dULq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tNchh6dULq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tNchh6dULq .carousel-indicators {
    display: none;
  }
}
.cid-tNchh6dULq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tNchh6dULq .carousel-inner > .active {
  display: block;
}
.cid-tNchh6dULq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNchh6dULq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNchh6dULq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tNchh6dULq .carousel-control,
  .cid-tNchh6dULq .carousel-indicators,
  .cid-tNchh6dULq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tNchh6dULq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tNchh6dULq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tNchh6dULq .carousel-indicators .active,
.cid-tNchh6dULq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tNchh6dULq .carousel-indicators .active {
  background: #fff;
}
.cid-tNchh6dULq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tNchh6dULq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tNchh6dULq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tNchh6dULq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tNchh6dULq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tNchh6dULq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tNchh6dULq .carousel {
  width: 100%;
}
.cid-tNchh6dULq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tNchh6dULq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tNchh6dULq .modal.fade .modal-dialog,
.cid-tNchh6dULq .modal.in .modal-dialog {
  transform: none;
}
.cid-tNchh6dULq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tNchh6dULq H6 {
  text-align: center;
}
.cid-tMLQlF5xa6 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tMLQlF5xa6 .row {
  justify-content: flex-start;
}
.cid-tMLQlF5xa6 .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-tMLQlF5xa6 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tMLQlF5xa6 .mbr-section-title {
  color: #45494E;
}
.cid-tMLQlF5xa6 .mbr-section-subtitle {
  color: #45494E;
}
.cid-tMLQlF5xa6 .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-tMLQlF5xa6 .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-tMLQlF5xa6 .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-tMLQlF5xa6 .item-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-tMLQlF5xa6 .item-content {
    padding-bottom: 10%;
  }
}
.cid-tMLQlF5xa6 .item-title {
  color: #232323;
  text-align: center;
}
.cid-tMLQlF5xa6 .mbr-text {
  color: #45494E;
  padding-top: 34px;
  padding-bottom: 24px;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tMLQlF5xa6 .mbr-text {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.cid-tMLQlF5xa6 .mbr-section-btn {
  margin-top: auto;
}
.cid-tMLQlF5xa6 .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 75%;
  margin-bottom: 34px;
}
@media (max-width: 991px) {
  .cid-tMLQlF5xa6 .item-img {
    margin-bottom: 24px;
  }
}
.cid-tMLQlF5xa6 .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-tMLQlF5xa6 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tMLQlF5xa6 .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cid-tMLKxAotuj {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tMLKxAotuj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMLKxAotuj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMLKxAotuj .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tMLKxAotuj .mbr-section-title {
  color: #24262b;
}
.cid-tMLKxAotuj .mbr-section-subtitle {
  color: #24262b;
}
.cid-tMLKxAotuj .items-row {
  row-gap: 32px;
}
.cid-tMLKxAotuj .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-tMLKxAotuj .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-tMLKxAotuj .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-tMLKxAotuj .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-tMLKxAotuj .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-tMLKxAotuj .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tMLKxAotuj .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-tMLKxAotuj .mbr-item-subtitle {
  color: #24262b;
}
.cid-tMLKxAotuj .carousel-control,
.cid-tMLKxAotuj .close {
  background: #1b1b1b;
}
.cid-tMLKxAotuj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tMLKxAotuj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tMLKxAotuj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tMLKxAotuj .carousel-control-next span {
  margin-left: 5px;
}
.cid-tMLKxAotuj .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tMLKxAotuj .close::before {
  content: '\e91a';
}
.cid-tMLKxAotuj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tMLKxAotuj .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tMLKxAotuj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMLKxAotuj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tMLKxAotuj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tMLKxAotuj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tMLKxAotuj .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tMLKxAotuj .carousel-indicators li.active,
.cid-tMLKxAotuj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tMLKxAotuj .carousel-indicators li::after,
.cid-tMLKxAotuj .carousel-indicators li::before {
  content: none;
}
.cid-tMLKxAotuj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tMLKxAotuj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tMLKxAotuj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tMLKxAotuj .carousel-indicators {
    display: none;
  }
}
.cid-tMLKxAotuj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tMLKxAotuj .carousel-inner > .active {
  display: block;
}
.cid-tMLKxAotuj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMLKxAotuj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tMLKxAotuj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tMLKxAotuj .carousel-control,
  .cid-tMLKxAotuj .carousel-indicators,
  .cid-tMLKxAotuj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tMLKxAotuj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tMLKxAotuj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tMLKxAotuj .carousel-indicators .active,
.cid-tMLKxAotuj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tMLKxAotuj .carousel-indicators .active {
  background: #fff;
}
.cid-tMLKxAotuj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tMLKxAotuj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tMLKxAotuj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tMLKxAotuj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tMLKxAotuj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tMLKxAotuj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tMLKxAotuj .carousel {
  width: 100%;
}
.cid-tMLKxAotuj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tMLKxAotuj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tMLKxAotuj .modal.fade .modal-dialog,
.cid-tMLKxAotuj .modal.in .modal-dialog {
  transform: none;
}
.cid-tMLKxAotuj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tMLKxAotuj H6 {
  text-align: center;
}
.cid-tMMeU5U0j3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tMMeU5U0j3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMMeU5U0j3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMMeU5U0j3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMMeU5U0j3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tMMeU5U0j3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tMQVjwniMx {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMQVjwniMx img,
.cid-tMQVjwniMx .item-img {
  width: 100%;
}
.cid-tMQVjwniMx .item:focus,
.cid-tMQVjwniMx span:focus {
  outline: none;
}
.cid-tMQVjwniMx .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tMQVjwniMx .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tMQVjwniMx .item {
  padding: 0;
  margin: 0;
}
.cid-tMQVjwniMx .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tMQVjwniMx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMQVjwniMx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tMQVjwniMx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tMQVjwniMx .mbr-section-title {
  color: #232323;
}
.cid-tMAyxOsLlL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMAyxOsLlL nav.navbar {
  position: fixed;
}
.cid-tMAyxOsLlL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMAyxOsLlL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMAyxOsLlL .dropdown-item:hover,
.cid-tMAyxOsLlL .dropdown-item:focus {
  background: #e4582f !important;
  color: white !important;
}
.cid-tMAyxOsLlL .dropdown-item:hover span {
  color: white;
}
.cid-tMAyxOsLlL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMAyxOsLlL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMAyxOsLlL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMAyxOsLlL .nav-link {
  position: relative;
}
.cid-tMAyxOsLlL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tMAyxOsLlL .container {
    flex-wrap: nowrap;
  }
}
.cid-tMAyxOsLlL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMAyxOsLlL .dropdown-menu,
.cid-tMAyxOsLlL .navbar.opened {
  background: #ffffff !important;
}
.cid-tMAyxOsLlL .nav-item:focus,
.cid-tMAyxOsLlL .nav-link:focus {
  outline: none;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMAyxOsLlL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMAyxOsLlL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMAyxOsLlL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMAyxOsLlL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMAyxOsLlL .navbar.opened {
  transition: all 0.3s;
}
.cid-tMAyxOsLlL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMAyxOsLlL .navbar .navbar-logo img {
  width: auto;
}
.cid-tMAyxOsLlL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMAyxOsLlL .navbar.collapsed {
  justify-content: center;
}
.cid-tMAyxOsLlL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMAyxOsLlL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMAyxOsLlL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMAyxOsLlL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMAyxOsLlL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMAyxOsLlL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMAyxOsLlL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMAyxOsLlL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMAyxOsLlL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMAyxOsLlL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMAyxOsLlL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMAyxOsLlL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMAyxOsLlL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMAyxOsLlL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMAyxOsLlL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMAyxOsLlL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMAyxOsLlL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMAyxOsLlL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMAyxOsLlL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMAyxOsLlL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMAyxOsLlL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMAyxOsLlL .dropdown-item.active,
.cid-tMAyxOsLlL .dropdown-item:active {
  background-color: transparent;
}
.cid-tMAyxOsLlL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMAyxOsLlL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMAyxOsLlL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMAyxOsLlL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMAyxOsLlL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMAyxOsLlL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMAyxOsLlL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMAyxOsLlL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMAyxOsLlL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMAyxOsLlL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMAyxOsLlL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMAyxOsLlL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMAyxOsLlL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMAyxOsLlL .navbar {
    height: 70px;
  }
  .cid-tMAyxOsLlL .navbar.opened {
    height: auto;
  }
  .cid-tMAyxOsLlL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMKzKKZ0Vv {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-tMKzKKZ0Vv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMKzKKZ0Vv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMKzKKZ0Vv .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tMKzKKZ0Vv .row {
    text-align: center;
  }
  .cid-tMKzKKZ0Vv .row > div {
    margin: auto;
  }
  .cid-tMKzKKZ0Vv .social-row {
    justify-content: center;
  }
}
.cid-tMKzKKZ0Vv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tMKzKKZ0Vv .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tMKzKKZ0Vv .list {
    margin-bottom: 0rem;
  }
}
.cid-tMKzKKZ0Vv .mbr-text {
  color: #bbbbbb;
}
.cid-tMKzKKZ0Vv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tMKzKKZ0Vv .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tMKzKKZ0Vv div > *:last-child {
    margin-top: 0 !important;
  }
}
