body {
  font-family: 'Hind', sans-serif;
}
.display-1 {
  font-family: 'Noto Serif', serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Hind', sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.7rem 1.3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ffdc4d !important;
}
.bg-success {
  background-color: #c69c00 !important;
}
.bg-info {
  background-color: #c69c00 !important;
}
.bg-warning {
  background-color: #c69c00 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffdc4d !important;
  border-color: #ffdc4d !important;
  color: #000000 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #000000 !important;
  background-color: #ffdc4d !important;
  border-color: #ffdc4d !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #ffdc4d !important;
  border-color: #ffdc4d !important;
}
.btn-primary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-primary:hover {
  color: black !important;
}
.btn-primary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-secondary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: black !important;
}
.btn-secondary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-info {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #c69c00 !important;
  border-color: #c69c00 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #c69c00 !important;
  border-color: #c69c00 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #c69c00 !important;
  border-color: #c69c00 !important;
}
.btn-info:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-info:hover {
  color: black !important;
}
.btn-info:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-success {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #c69c00 !important;
  border-color: #c69c00 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #c69c00 !important;
  border-color: #c69c00 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c69c00 !important;
  border-color: #c69c00 !important;
}
.btn-success:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-success:hover {
  color: black !important;
}
.btn-success:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-warning {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #c69c00 !important;
  border-color: #c69c00 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #c69c00 !important;
  border-color: #c69c00 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #c69c00 !important;
  border-color: #c69c00 !important;
}
.btn-warning:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-warning:hover {
  color: black !important;
}
.btn-warning:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-danger {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-danger:hover {
  color: black !important;
}
.btn-danger:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover {
  color: black !important;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #ffdc4d;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-black {
  position: relative;
  z-index: 1;
  border: 0;
}
.btn-black,
.btn-black:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-black:hover {
  color: black !important;
}
.btn-black:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffdc4d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #f5c500 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #4d3e00 !important;
  background-color: #ffdc4d !important;
  border-color: #ffdc4d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c69c00;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #6f5800 !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: #c69c00 !important;
  border-color: #c69c00 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c69c00;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6f5800 !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: #c69c00 !important;
  border-color: #c69c00 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c69c00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #6f5800 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c69c00 !important;
  border-color: #c69c00 !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: #272727;
}
.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: #272727 !important;
  border-color: #272727 !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: #ffdc4d !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #c69c00 !important;
}
.text-info {
  color: #c69c00 !important;
}
.text-warning {
  color: #c69c00 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #272727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ffdc4d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #604c00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #604c00 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #604c00 !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: #fafafa !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffdc4d;
}
.nav-tabs .nav-link:not(.active) {
  color: #272727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #c69c00;
}
.alert-warning {
  background-color: #c69c00;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffdc4d;
  border-color: #ffdc4d;
  color: #675200;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffdc4d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffd846;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd846;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffd846;
}
.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: 'Hind Siliguri', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffdc4d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ffdc4d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffdc4d;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffdc4d;
}
.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: #ffdc4d;
  border-bottom-color: #ffdc4d;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffdc4d !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: #000000 !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='%23ffdc4d' %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-tdn7oBumTN {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tdn7oBumTN .title_block {
  margin-bottom: 80px;
}
.cid-tdn7oBumTN .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-tdn7oBumTN .mbr-section-title {
  color: #ffffff;
}
.cid-tdn7oBumTN .mbr-item-subtitle {
  margin-top: 15px;
  margin-bottom: 10px;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #000000;
}
.cid-tdn7oBumTN .item {
  padding-bottom: 3rem;
}
.cid-tdn7oBumTN .image-wrapper {
  overflow: hidden;
}
.cid-tdn7oBumTN .item-wrapper {
  position: relative;
}
.cid-tdn7oBumTN .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-tdn7oBumTN .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tdn7oBumTN .item-wrapper:hover .mbr-item-subtitle a {
  color: #ffffff !important;
}
.cid-tdn7oBumTN .item-wrapper:hover img {
  transform: scale(1.1);
}
.cid-tdn7oBumTN .carousel-control,
.cid-tdn7oBumTN .close {
  background: #1b1b1b;
}
.cid-tdn7oBumTN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tdn7oBumTN .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tdn7oBumTN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tdn7oBumTN .carousel-control-next span {
  margin-left: 5px;
}
.cid-tdn7oBumTN .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-tdn7oBumTN .close::before {
  content: '\e91a';
}
.cid-tdn7oBumTN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tdn7oBumTN .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-tdn7oBumTN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tdn7oBumTN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tdn7oBumTN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tdn7oBumTN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tdn7oBumTN .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-tdn7oBumTN .carousel-indicators li.active,
.cid-tdn7oBumTN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tdn7oBumTN .carousel-indicators li::after,
.cid-tdn7oBumTN .carousel-indicators li::before {
  content: none;
}
.cid-tdn7oBumTN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tdn7oBumTN .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tdn7oBumTN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tdn7oBumTN .carousel-indicators {
    display: none;
  }
}
.cid-tdn7oBumTN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tdn7oBumTN .carousel-inner > .active {
  display: block;
}
.cid-tdn7oBumTN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tdn7oBumTN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tdn7oBumTN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tdn7oBumTN .carousel-control,
  .cid-tdn7oBumTN .carousel-indicators,
  .cid-tdn7oBumTN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tdn7oBumTN .mbr-slider .carousel-control {
    top: 50px;
    bottom: 20px;
  }
  .cid-tdn7oBumTN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tdn7oBumTN .carousel-indicators .active,
.cid-tdn7oBumTN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tdn7oBumTN .carousel-indicators .active {
  background: #fff;
}
.cid-tdn7oBumTN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tdn7oBumTN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tdn7oBumTN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tdn7oBumTN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tdn7oBumTN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tdn7oBumTN .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tdn7oBumTN .carousel {
  width: 100%;
}
.cid-tdn7oBumTN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tdn7oBumTN .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tdn7oBumTN .modal.fade .modal-dialog,
.cid-tdn7oBumTN .modal.in .modal-dialog {
  transform: none;
}
.cid-tdn7oBumTN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tdn7oBumTN .descr mb-0 {
  text-align: center;
}
#custom-html-1l {
  /* Type valid CSS here */
}
#custom-html-1l div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1l p {
  font-size: 60px;
  color: #777;
}
.cid-tfrkuViwoV {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tfrkuViwoV .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tfrkuViwoV input,
.cid-tfrkuViwoV textarea {
  border-radius: 0;
}
.cid-tfrkuViwoV input:hover,
.cid-tfrkuViwoV textarea:hover {
  border: 1px solid transparent !important;
}
.cid-tfrkuViwoV textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-tfrkuViwoV .col-auto {
    margin: auto;
  }
}
.cid-tfrkuViwoV .mbr-main-subtitle {
  background: #ffdc4d;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tfrkuViwoV .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #ffdc4d;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tfrkuViwoV .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tfrkuViwoV .btn {
  padding: 1rem 3rem;
}
.cid-tfrkuViwoV .mbr-section-text {
  color: #000000;
}
.cid-tfrkuViwoV .mbr-section-title {
  color: #000000;
}
.cid-tgFAvaVVpq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
  display: flex;
  align-items: center;
}
.cid-tgFAvaVVpq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tgFAvaVVpq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgFAvaVVpq .row {
  justify-content: flex-start;
}
.cid-tgFAvaVVpq .mbr-text {
  color: #1F1D1A;
  margin-bottom: 30px;
}
.cid-tfDMHG0Qgp {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tfDMHG0Qgp .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tfDMHG0Qgp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tfDMHG0Qgp .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-tfDTaQ0RpS {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tfDTaQ0RpS .image-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tfDTaQ0RpS .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tfDTaQ0RpS .image-wrapper {
    padding: 30px;
    padding-left: 3rem;
  }
}
.cid-tfDTaQ0RpS .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-tfDTaQ0RpS .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-tfDTaQ0RpS .image-wrapper .img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 32px;
  max-width: 100%;
  max-height: 100%;
  background-color: #ffffff;
}
.cid-tfDTaQ0RpS .image-wrapper .img-caption .img-label-text {
  color: #F0C48A;
}
.cid-tfDTaQ0RpS .image-wrapper .img-caption .img-text {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-tfDTaQ0RpS .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tfDTaQ0RpS .col-text {
    padding: 30px;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tfDTaQ0RpS .col-text {
    text-align: center;
  }
}
.cid-tfDTaQ0RpS .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tfDTaQ0RpS .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-tfDTaQ0RpS .label-text {
    text-align: center !important;
  }
}
.cid-tfDTaQ0RpS .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-tfDTaQ0RpS .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-tfDTaQ0RpS .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .cid-tfDTaQ0RpS .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tfDTaQ0RpS .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tfDTaQ0RpS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfDTaQ0RpS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfDTaQ0RpS .mbr-section-title,
.cid-tfDTaQ0RpS .mbr-section-btn {
  text-align: center;
}
.cid-tfDOR3bmup {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tfDOR3bmup .mbr-text {
  color: #353535;
}
.cid-tfDOR3bmup .list {
  color: #666666;
}
.cid-tfDOR3bmup ul {
  list-style-position: inside;
  padding: 0;
}
.cid-tfDOR3bmup li {
  padding-bottom: 0.5rem;
}
.cid-tfDUpCJESJ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #d8d5d1;
  position: relative;
  overflow: hidden;
}
.cid-tfDUpCJESJ .row {
  justify-content: center;
}
.cid-tfDUpCJESJ .title-container {
  max-width: 1300px;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
}
.cid-tfDUpCJESJ .mbr-section-title {
  color: #161616;
}
.cid-tfDUpCJESJ .mbr-section-subtitle {
  color: #161616;
  margin-top: 16px;
}
.cid-tfDUpCJESJ .mbr-section-btn {
  margin-top: 30px;
}
.cid-tfDUpCJESJ .circle-blur {
  position: absolute;
  bottom: -15%;
  right: 0;
  display: block;
  width: 600px;
  height: 440px;
  -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;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-tfVDRCdvmA {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tfVDRCdvmA img,
.cid-tfVDRCdvmA .item-img {
  width: 100%;
  object-fit: cover;
  height: 600px;
  transition: all 0.35s cubic-bezier(0.4, 0.12, 0.4, 0.85);
}
.cid-tfVDRCdvmA .item-img {
  position: relative;
}
.cid-tfVDRCdvmA .item-img:before {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  border: 1px solid #dddddd;
  top: -0.5%;
  left: -0.5%;
  pointer-events: none;
}
.cid-tfVDRCdvmA .item-img:hover {
  transform: translateY(-7px);
}
.cid-tfVDRCdvmA .item {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-tfVDRCdvmA .item:nth-child(1),
  .cid-tfVDRCdvmA .item:nth-child(2),
  .cid-tfVDRCdvmA .item:nth-child(3) {
    margin-top: 70px;
  }
  .cid-tfVDRCdvmA .item:nth-child(2),
  .cid-tfVDRCdvmA .item:nth-child(5),
  .cid-tfVDRCdvmA .item:nth-child(8),
  .cid-tfVDRCdvmA .item:nth-child(11),
  .cid-tfVDRCdvmA .item:nth-child(15) {
    transform: translateY(-70px);
  }
}
.cid-tfVDRCdvmA .item-title {
  margin-bottom: 1rem;
  color: #202020;
}
.cid-tfVDRCdvmA .item_content {
  margin-top: 27px;
}
.cid-tfVDRCdvmA .mbr-text {
  margin-bottom: 1rem;
}
.cid-tfVDRCdvmA .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
@media (min-width: 992px) {
  .cid-tfVDRCdvmA .item-wrapper {
    padding: 0 1.5rem;
  }
}
.cid-tfVBNjcuRG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f6f4f2;
}
.cid-tfVBNjcuRG .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tfVBNjcuRG .content-wrapper .image-wrapper {
    margin-bottom: 0 !important;
  }
  .cid-tfVBNjcuRG .content-wrapper .image-wrapper.reverse {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-tfVBNjcuRG .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tfVBNjcuRG .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tfVBNjcuRG .content-wrapper {
    padding: 4rem 4rem;
  }
  .cid-tfVBNjcuRG .content-wrapper .order-2 .text-wrapper {
    padding-left: 6.4rem;
    padding-right: 0;
  }
  .cid-tfVBNjcuRG .content-wrapper .text-wrapper {
    padding-right: 6.4rem;
  }
}
.cid-tfVBNjcuRG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tfVBNjcuRG .card-title {
  margin-bottom: 1.88rem !important;
  color: #1d1e22;
}
.cid-tfVBNjcuRG .mbr-text,
.cid-tfVBNjcuRG .mbr-section-btn {
  color: #1d1e22;
}
.cid-tfVCf0shS1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfVCf0shS1 .mbr-text {
  color: #353535;
}
.cid-tfVCf0shS1 .list {
  color: #666666;
}
.cid-tfVCf0shS1 ul {
  list-style-position: inside;
  padding: 0;
}
.cid-tfVCf0shS1 li {
  padding-bottom: 0.5rem;
}
.cid-tfVCqEGYSz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f6f4f2;
}
.cid-tfVCqEGYSz .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tfVCqEGYSz .content-wrapper .image-wrapper {
    margin-bottom: 0 !important;
  }
  .cid-tfVCqEGYSz .content-wrapper .image-wrapper.reverse {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-tfVCqEGYSz .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tfVCqEGYSz .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tfVCqEGYSz .content-wrapper {
    padding: 4rem 4rem;
  }
  .cid-tfVCqEGYSz .content-wrapper .order-2 .text-wrapper {
    padding-left: 6.4rem;
    padding-right: 0;
  }
  .cid-tfVCqEGYSz .content-wrapper .text-wrapper {
    padding-right: 6.4rem;
  }
}
.cid-tfVCqEGYSz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tfVCqEGYSz .card-title {
  margin-bottom: 1.88rem !important;
  color: #1d1e22;
}
.cid-tfVCqEGYSz .mbr-text,
.cid-tfVCqEGYSz .mbr-section-btn {
  color: #1d1e22;
}
.cid-tfVMm4F4S6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tfVMm4F4S6 .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-tfVMm4F4S6 .card .card-img img {
  transition: all 0.5s;
}
.cid-tfVMm4F4S6 .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tfVMm4F4S6 .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tfVMm4F4S6 .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-tfVMm4F4S6 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tfVMm4F4S6 .first-card {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tfVMm4F4S6 .first-card .card-wrapper {
  height: 100%;
}
.cid-tfVMm4F4S6 .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfVMm4F4S6 .first-card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-tfVMm4F4S6 .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tfVMm4F4S6 .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tfVMm4F4S6 .first-row,
.cid-tfVMm4F4S6 .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-tfVMm4F4S6 .first-row .card .card-wrapper,
.cid-tfVMm4F4S6 .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-tfVMm4F4S6 .first-row .card .card-wrapper .card-img,
.cid-tfVMm4F4S6 .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-tfVMm4F4S6 .first-row .card .card-wrapper .card-img img,
.cid-tfVMm4F4S6 .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-tfVMm4F4S6 .first-row,
  .cid-tfVMm4F4S6 .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfVMm4F4S6 .first-row .card .card-wrapper .card-img,
  .cid-tfVMm4F4S6 .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfVMm4F4S6 .first-row .card .card-wrapper .card-img img,
  .cid-tfVMm4F4S6 .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-tfVMm4F4S6 .first-row .caption,
.cid-tfVMm4F4S6 .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-tfVMm4F4S6 .first-row .caption .price,
.cid-tfVMm4F4S6 .second-row .caption .price {
  background: #c19b76;
  padding: 0 0.5rem;
}
.cid-tfVMm4F4S6 .first-row {
  padding-bottom: 0rem;
}
.cid-tfVMm4F4S6 .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tfVMm4F4S6 {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-tfVMm4F4S6 .first-card,
  .cid-tfVMm4F4S6 .first-child {
    padding-bottom: 2rem;
  }
  .cid-tfVMm4F4S6 .card-box {
    padding: 0 0rem;
  }
  .cid-tfVMm4F4S6 .card {
    margin: 0;
    padding: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tfVMm4F4S6 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .cid-tfVMm4F4S6 .container-fluid {
    max-width: 1300px;
    padding: 0 2rem;
  }
  .cid-tfVMm4F4S6 .card-box {
    padding-right: 4rem;
    padding-left: 7rem;
  }
  .cid-tfVMm4F4S6 .card {
    margin: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cid-tfVMm4F4S6 .first-card {
    padding-bottom: 2rem;
  }
  .cid-tfVMm4F4S6 .only-first-row {
    height: 100%;
  }
}
.cid-tfVMm4F4S6 p {
  margin-bottom: 0;
}
.cid-tfVMm4F4S6 h2 {
  margin-bottom: 1rem;
}
.cid-tfVMm4F4S6 .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tfVMm4F4S6 .btn-line {
  margin-top: 3rem;
}
.cid-tfVMm4F4S6 .container-fluid {
  max-width: 1300px;
}
.cid-tfVMm4F4S6 .first-card .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-tfVMm4F4S6 .card-box-name {
  padding: 0;
}
.cid-tfVPXI6wYd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tfVPXI6wYd .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-tfVPXI6wYd .card .card-img img {
  transition: all 0.5s;
}
.cid-tfVPXI6wYd .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tfVPXI6wYd .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-tfVPXI6wYd .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tfVPXI6wYd .first-card {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tfVPXI6wYd .first-card .card-wrapper {
  height: 100%;
}
.cid-tfVPXI6wYd .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfVPXI6wYd .first-card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-tfVPXI6wYd .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tfVPXI6wYd .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tfVPXI6wYd .first-row,
.cid-tfVPXI6wYd .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-tfVPXI6wYd .first-row .card .card-wrapper,
.cid-tfVPXI6wYd .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-tfVPXI6wYd .first-row .card .card-wrapper .card-img,
.cid-tfVPXI6wYd .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-tfVPXI6wYd .first-row .card .card-wrapper .card-img img,
.cid-tfVPXI6wYd .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-tfVPXI6wYd .first-row,
  .cid-tfVPXI6wYd .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfVPXI6wYd .first-row .card .card-wrapper .card-img,
  .cid-tfVPXI6wYd .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfVPXI6wYd .first-row .card .card-wrapper .card-img img,
  .cid-tfVPXI6wYd .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-tfVPXI6wYd .first-row .caption,
.cid-tfVPXI6wYd .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-tfVPXI6wYd .first-row .caption .price,
.cid-tfVPXI6wYd .second-row .caption .price {
  background: #c19b76;
  padding: 0 0.5rem;
}
.cid-tfVPXI6wYd .first-row {
  padding-bottom: 0rem;
}
.cid-tfVPXI6wYd .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tfVPXI6wYd {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-tfVPXI6wYd .first-card,
  .cid-tfVPXI6wYd .first-child {
    padding-bottom: 2rem;
  }
  .cid-tfVPXI6wYd .card-box {
    padding: 0 0rem;
  }
  .cid-tfVPXI6wYd .card {
    margin: 0;
    padding: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tfVPXI6wYd {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .cid-tfVPXI6wYd .container-fluid {
    max-width: 1300px;
    padding: 0 2rem;
  }
  .cid-tfVPXI6wYd .card-box {
    padding-right: 4rem;
    padding-left: 7rem;
  }
  .cid-tfVPXI6wYd .card {
    margin: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cid-tfVPXI6wYd .first-card {
    padding-bottom: 2rem;
  }
  .cid-tfVPXI6wYd .only-first-row {
    height: 100%;
  }
}
.cid-tfVPXI6wYd p {
  margin-bottom: 0;
}
.cid-tfVPXI6wYd h2 {
  margin-bottom: 1rem;
}
.cid-tfVPXI6wYd .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tfVPXI6wYd .btn-line {
  margin-top: 3rem;
}
.cid-tfVPXI6wYd .container-fluid {
  max-width: 1300px;
}
.cid-tfVPXI6wYd .first-card .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-tfVPXI6wYd .card-box-name {
  padding: 0;
}
.cid-tfVPYbg0T3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tfVPYbg0T3 .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-tfVPYbg0T3 .card .card-img img {
  transition: all 0.5s;
}
.cid-tfVPYbg0T3 .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tfVPYbg0T3 .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tfVPYbg0T3 .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-tfVPYbg0T3 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tfVPYbg0T3 .first-card {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tfVPYbg0T3 .first-card .card-wrapper {
  height: 100%;
}
.cid-tfVPYbg0T3 .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tfVPYbg0T3 .first-card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-tfVPYbg0T3 .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tfVPYbg0T3 .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tfVPYbg0T3 .first-row,
.cid-tfVPYbg0T3 .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-tfVPYbg0T3 .first-row .card .card-wrapper,
.cid-tfVPYbg0T3 .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-tfVPYbg0T3 .first-row .card .card-wrapper .card-img,
.cid-tfVPYbg0T3 .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-tfVPYbg0T3 .first-row .card .card-wrapper .card-img img,
.cid-tfVPYbg0T3 .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-tfVPYbg0T3 .first-row,
  .cid-tfVPYbg0T3 .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfVPYbg0T3 .first-row .card .card-wrapper .card-img,
  .cid-tfVPYbg0T3 .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tfVPYbg0T3 .first-row .card .card-wrapper .card-img img,
  .cid-tfVPYbg0T3 .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-tfVPYbg0T3 .first-row .caption,
.cid-tfVPYbg0T3 .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-tfVPYbg0T3 .first-row .caption .price,
.cid-tfVPYbg0T3 .second-row .caption .price {
  background: #c19b76;
  padding: 0 0.5rem;
}
.cid-tfVPYbg0T3 .first-row {
  padding-bottom: 0rem;
}
.cid-tfVPYbg0T3 .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tfVPYbg0T3 {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-tfVPYbg0T3 .first-card,
  .cid-tfVPYbg0T3 .first-child {
    padding-bottom: 2rem;
  }
  .cid-tfVPYbg0T3 .card-box {
    padding: 0 0rem;
  }
  .cid-tfVPYbg0T3 .card {
    margin: 0;
    padding: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tfVPYbg0T3 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .cid-tfVPYbg0T3 .container-fluid {
    max-width: 1300px;
    padding: 0 2rem;
  }
  .cid-tfVPYbg0T3 .card-box {
    padding-right: 4rem;
    padding-left: 7rem;
  }
  .cid-tfVPYbg0T3 .card {
    margin: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cid-tfVPYbg0T3 .first-card {
    padding-bottom: 2rem;
  }
  .cid-tfVPYbg0T3 .only-first-row {
    height: 100%;
  }
}
.cid-tfVPYbg0T3 p {
  margin-bottom: 0;
}
.cid-tfVPYbg0T3 h2 {
  margin-bottom: 1rem;
}
.cid-tfVPYbg0T3 .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tfVPYbg0T3 .btn-line {
  margin-top: 3rem;
}
.cid-tfVPYbg0T3 .container-fluid {
  max-width: 1300px;
}
.cid-tfVPYbg0T3 .first-card .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-tfVPYbg0T3 .card-box-name {
  padding: 0;
}
.cid-tg0v6cnHP8 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tg0v6cnHP8 .mbr-overlay {
  z-index: 1;
}
.cid-tg0v6cnHP8 .main-container-text {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto 5rem;
  flex-shrink: 1;
}
@media (max-width: 767px) {
  .cid-tg0v6cnHP8 .main-container-text {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 991px) {
  .cid-tg0v6cnHP8 .main-container-text {
    padding: 0 0.75rem;
  }
}
.cid-tg0v6cnHP8 .label-text {
  color: #111111;
  width: 100%;
}
.cid-tg0v6cnHP8 .item-title {
  width: 100%;
  color: #111111;
  z-index: 2;
}
.cid-tg0v6cnHP8 .item-title span {
  position: relative;
  z-index: 2;
}
.cid-tg0v6cnHP8 .item-title span:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #ffdc4d;
  z-index: 1;
}
.cid-tg0v6cnHP8 .main-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cid-tg0v6cnHP8 .row-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.cid-tg0v6cnHP8 .card {
  padding: 3px;
}
.cid-tg0v6cnHP8 .card-container {
  display: flex;
}
.cid-tg0v6cnHP8 .card-container .card {
  border-radius: 0;
}
.cid-tg0v6cnHP8 .card-container .card .item-img {
  height: 100%;
}
.cid-tg0v6cnHP8 .card-container .card .item-img img {
  height: 100%;
}
.cid-tg0v6cnHP8 .cards-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-tg0v6cnHP8 .cards-container .card {
  border-radius: 0;
}
.cid-tg0v6cnHP8 .cards-container .card .item-img {
  display: flex;
}
.cid-tg1dSAUPfk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tg1dSAUPfk .container {
    max-width: 1000px;
  }
}
.cid-tg1dSAUPfk .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.cid-tg1dSAUPfk .card-wrapper {
  margin-bottom: 2rem;
  border-top: 1px solid #efefef;
  padding-top: 2rem;
}
.cid-tg1dSAUPfk .row {
  justify-content: center;
}
.cid-tg1dSAUPfk .card-text {
  color: #353535;
}
.cid-tg1dSAUPfk .card-title,
.cid-tg1dSAUPfk .iconfont-wrapper {
  color: #272727;
}
.cid-tg1eFKuFCT {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tg1eFKuFCT .container {
  max-width: 1132px;
}
.cid-tg1eFKuFCT .col-md-7 {
  margin: auto !important;
}
@media (max-width: 992px) {
  .cid-tg1eFKuFCT .b {
    margin-bottom: 20px;
  }
}
.cid-tg1i1yJqKY {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e9e9e9;
}
.cid-tg1i1yJqKY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg1i1yJqKY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg1i1yJqKY .mbr-section-title {
  text-align: left;
}
.cid-tg1jcb11Kk {
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
  background-color: #ffffff;
}
.cid-tg1jcb11Kk .mbr-section-title {
  color: #202020;
  margin-bottom: 18px;
}
.cid-tg1jcb11Kk .main_header {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .cid-tg1jcb11Kk .main_header {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .cid-tg1jcb11Kk .main_header {
    margin-bottom: 60px;
  }
}
.cid-tg1jcb11Kk img,
.cid-tg1jcb11Kk .item-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-tg1jcb11Kk .item-img {
  position: relative;
}
.cid-tg1jcb11Kk .item-img:before {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  border: 1px solid #dddddd;
  top: -0.5%;
  left: -0.5%;
  pointer-events: none;
}
.cid-tg1jcb11Kk .item {
  margin-bottom: 2rem;
}
.cid-tg1jcb11Kk .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-tg6N5oOZwc {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tg6N5oOZwc .row {
  flex-direction: row-reverse;
}
.cid-tg6N5oOZwc .main_title {
  margin-bottom: 2.5rem;
}
.cid-tg6N5oOZwc .card_subtitle {
  margin-bottom: .75rem;
}
.cid-tg6N5oOZwc .mbr-text {
  line-height: 1.23;
  text-align: center;
}
.cid-tg6N5oOZwc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tg6N5oOZwc .list_title {
  margin-bottom: 1.5rem;
}
.cid-tg6N5oOZwc .list_box {
  margin-top: 2rem;
}
.cid-tg6N5oOZwc ol {
  padding: 0;
  margin: 0;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.cid-tg6N5oOZwc ol li {
  display: block;
  line-height: 1.23;
  margin-bottom: .5rem;
  list-style: none;
}
.cid-tg6N5oOZwc ol li:before {
  content: "⚬ ";
  margin-right: 5px;
  display: inline-block;
  min-width: 28px;
}
@media (min-width: 992px) {
  .cid-tg6N5oOZwc .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tg6N5oOZwc .row {
    flex-direction: column-reverse;
  }
  .cid-tg6N5oOZwc .card-wrapper {
    padding: 0;
  }
  .cid-tg6N5oOZwc .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-tg6N5oOZwc .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-tg6N5oOZwc .image-wrapper {
    margin-bottom: 3rem;
  }
  .cid-tg6N5oOZwc .list_title {
    margin-bottom: .75rem;
  }
  .cid-tg6N5oOZwc .list_box {
    margin-top: 1rem;
  }
  .cid-tg6N5oOZwc ol {
    margin-top: .75rem;
    margin-bottom: .75rem;
  }
  .cid-tg6N5oOZwc ol li {
    margin-bottom: .25rem;
  }
}
.cid-tg6N5oOZwc .card-title P {
  text-align: center;
}
.cid-tg6N5oOZwc .list {
  text-align: center;
}
.cid-tgde0IZGRN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tgde0IZGRN [class*="col"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tgde0IZGRN .media-container-column {
  margin-bottom: 3rem;
}
.cid-tgde0IZGRN .panel-item {
  position: relative;
}
.cid-tgde0IZGRN .mbr-content-title {
  margin-top: 10px;
}
.cid-tgde0IZGRN .mbr-content-text {
  text-align: left;
}
.cid-tgde0IZGRN .count {
  height: 60px;
  line-height: 60px;
  text-align: center;
  width: 60px;
  border: 2px solid #366538;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
  z-index: 20;
  color: #366538;
  margin: 0 auto;
}
.cid-tgde0IZGRN .line-through {
  position: absolute;
  top: 28px;
  right: 50%;
  width: 100%;
  height: 2px;
  background-color: #366538;
}
@media (max-width: 767px) {
  .cid-tgde0IZGRN .line-through {
    display: none;
  }
}
.cid-tgde0IZGRN H4 {
  text-align: center;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tgde0IZGRN .card:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tgde0IZGRN .mbr-section-title {
  text-align: center;
}
.cid-tgde0IZGRN .mbr-subtitle {
  text-align: center;
}
.cid-tg6mYs5bqz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-tg6mYs5bqz img,
.cid-tg6mYs5bqz .item-img {
  height: 290px;
  object-fit: cover;
  width: 100%;
}
.cid-tg6mYs5bqz img:hover,
.cid-tg6mYs5bqz .item-img:hover {
  filter: brightness(85%);
}
.cid-tg6mYs5bqz .item:focus,
.cid-tg6mYs5bqz span:focus {
  outline: none;
}
.cid-tg6mYs5bqz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tg6mYs5bqz .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tg6mYs5bqz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tg6mYs5bqz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tg6mYs5bqz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tg6mYs5bqz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tg6mYs5bqz .mbr-section-title {
  margin-bottom: 87px;
}
.cid-tg6mYs5bqz .mbr-text,
.cid-tg6mYs5bqz .mbr-section-btn {
  text-align: center;
}
.cid-tg6mYs5bqz .item-title {
  text-align: center;
  transition: all .5s;
}
.cid-tg6mYs5bqz .item-subtitle {
  text-align: center;
}
.cid-tg6mYs5bqz .btn {
  color: #18293D !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  margin: 0;
  padding: 8px 16px;
}
@media (min-width: 992px) {
  .cid-tg6mYs5bqz .display-1 {
    font-size: 65px;
  }
  .cid-tg6mYs5bqz .display-5 {
    font-size: 29px;
  }
  .cid-tg6mYs5bqz .display-7 {
    font-size: 24px;
  }
}
.cid-tghOiR2gld {
  background-color: #fff5ee;
}
.cid-tghOiR2gld .mbr-fallback-image.disabled {
  display: none;
}
.cid-tghOiR2gld .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tghOiR2gld .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tghOiR2gld .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tghOiR2gld .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-tghOiR2gld .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tghOiR2gld .content-container {
    flex-wrap: wrap;
  }
}
.cid-tghOiR2gld .img-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tghOiR2gld .img-container {
    width: 100%;
  }
}
.cid-tghOiR2gld .image-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tghOiR2gld .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tghOiR2gld .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 10% 0  10%;
  min-height: 720px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 700px) {
  .cid-tghOiR2gld .text-container {
    width: 100%;
    padding: 10px;
    padding-top: 5rem;
    padding-bottom: 5rem;
    min-height: 300px;
  }
}
.cid-tghOiR2gld .mbr-section-title {
  color: #366538;
  margin-bottom: 0;
  width: 100%;
}
.cid-tghOiR2gld .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 105%;
}
.cid-tghOiR2gld .mbr-section-btn {
  margin-top: 10px;
}
.cid-tghOiR2gld .mbr-text,
.cid-tghOiR2gld .mbr-section-btn {
  color: #353535;
}
.cid-tghTIgLSJR {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tghTIgLSJR .item-subtitle a {
  font-weight: 600;
}
.cid-tghTIgLSJR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tghTIgLSJR .item:hover img {
  transform: scale(1.05);
}
.cid-tghTIgLSJR .item-img {
  overflow: hidden;
}
.cid-tghTIgLSJR img,
.cid-tghTIgLSJR .item-img {
  width: 100%;
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tghTIgLSJR h5 {
  margin: 0;
}
.cid-tghTIgLSJR .item:focus,
.cid-tghTIgLSJR span:focus {
  outline: none;
}
.cid-tghTIgLSJR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tghTIgLSJR .item-content {
  padding-top: 2rem;
}
.cid-tghTIgLSJR .mbr-section-title {
  color: #232323;
}
.cid-tghTIgLSJR .item-title {
  color: #272727;
}
.cid-tghYY0DSjW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #eae8e4;
}
.cid-tghYY0DSjW .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-tghYY0DSjW .main_title {
  margin-bottom: 2.5rem;
}
.cid-tghYY0DSjW .card_subtitle {
  margin-bottom: .75rem;
}
.cid-tghYY0DSjW .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.23;
}
.cid-tghYY0DSjW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tghYY0DSjW .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tghYY0DSjW .row {
    flex-direction: column-reverse;
  }
  .cid-tghYY0DSjW .card-wrapper {
    padding: 0;
  }
  .cid-tghYY0DSjW .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-tghYY0DSjW .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-tghYY0DSjW .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-tghYY0DSjW .image-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-tgi5Zt9tPU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tgi5Zt9tPU .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #b18161;
  text-transform: uppercase;
}
.cid-tgi5Zt9tPU .mbr-section-title {
  margin-bottom: 30px;
  line-height: 0.9;
  color: #111213;
}
.cid-tgi5Zt9tPU .video-wrapper {
  margin-top: 80px;
}
.cid-tgi5Zt9tPU .video-wrapper iframe {
  width: 120%;
}
.cid-tgi5Zt9tPU .app-video-wrapper:before {
  font-size: 16px;
  padding: 28px 28px 28px 30px;
  background-color: #FFFFFF;
  color: #4D2E12;
  line-height: 15px;
  text-shadow: none;
}
.cid-tgi5Zt9tPU .right {
  margin-left: 14%;
}
.cid-tgi5Zt9tPU .mbr-text {
  color: #366538;
}
.cid-tgi5Zt9tPU .row {
  flex-direction: row-reverse;
}
.cid-tgi5Zt9tPU .right {
  margin-left: 0%;
  margin-right: 14%;
}
@media (max-width: 700px) {
  .cid-tgi5Zt9tPU .right {
    margin-left: 0;
    margin-right: 0 !important;
    margin-top: 50px;
  }
  .cid-tgi5Zt9tPU .video-wrapper {
    margin-top: 20px;
  }
}
.cid-tgi86xD6DL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  background-color: #fafafa;
}
.cid-tgi86xD6DL .mbr-section-title {
  color: #202020;
  margin-bottom: 18px;
}
.cid-tgi86xD6DL .main_header {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-tgi86xD6DL .main_header {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tgi86xD6DL .main_header {
    margin-bottom: 60px;
  }
}
.cid-tgi86xD6DL img,
.cid-tgi86xD6DL .item-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-tgi86xD6DL .item-img {
  position: relative;
}
.cid-tgi86xD6DL .item-img:before {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  border: 1px solid #dddddd;
  top: -0.5%;
  left: -0.5%;
  pointer-events: none;
}
.cid-tgi86xD6DL .item {
  margin-bottom: 2rem;
}
.cid-tgi86xD6DL .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-tgiaytVCjO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-tgiaytVCjO .mbr-overlay {
  z-index: 1;
}
.cid-tgiaytVCjO .main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  padding: 130px 32px;
  position: relative;
  z-index: 2;
}
.cid-tgiaytVCjO .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tgiaytVCjO .content {
    max-width: 975px;
  }
}
.cid-tgiaytVCjO .text-with-round,
.cid-tgiaytVCjO .mbr-section-title {
  width: 100%;
}
.cid-tgiaytVCjO .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tgiaytVCjO .mbr-form-container {
  width: 100%;
  margin-top: 12px;
}
.cid-tgiaytVCjO .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-top: 25px;
}
.cid-tgiaytVCjO .form-name-email-container {
  display: flex;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tgiaytVCjO .form-name-email-container {
    flex-wrap: wrap;
  }
}
.cid-tgiaytVCjO .form-name {
  padding-right: 15px;
}
@media (max-width: 991px) {
  .cid-tgiaytVCjO .form-name {
    width: 100%;
    padding: 0;
  }
}
.cid-tgiaytVCjO .form-email {
  padding-left: 15px;
}
@media (max-width: 991px) {
  .cid-tgiaytVCjO .form-email {
    width: 100%;
    padding: 0;
  }
}
.cid-tgiaytVCjO .form-message-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  padding: 0;
}
.cid-tgiaytVCjO form .row {
  margin: 0;
  border: none !important;
}
.cid-tgiaytVCjO form .form-group {
  flex-grow: 1;
  margin-bottom: 24px !important;
}
@media (max-width: 991px) {
  .cid-tgiaytVCjO form .form-group {
    width: 100%;
  }
}
.cid-tgiaytVCjO form .form-group input,
.cid-tgiaytVCjO form .form-group textarea {
  padding: 5px 4px 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-tgiaytVCjO form .form-group input:hover,
.cid-tgiaytVCjO form .form-group textarea:hover,
.cid-tgiaytVCjO form .form-group input :focus,
.cid-tgiaytVCjO form .form-group textarea :focus,
.cid-tgiaytVCjO form .form-group input :active,
.cid-tgiaytVCjO form .form-group textarea :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-tgiaytVCjO form .form-message {
  margin-bottom: 0 !important;
}
.cid-tgiaytVCjO form .form-message textarea {
  min-height: 100px;
  resize: none;
}
.cid-tgiaytVCjO form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-tgiaytVCjO form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
}
.cid-tgiqFu7dW2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tgiqFu7dW2 .mbr-text,
.cid-tgiqFu7dW2 .mbr-section-btn {
  color: #272727;
}
.cid-tgiqFu7dW2 ul {
  list-style: none;
  margin: 0;
  padding-left: 1.6rem;
}
.cid-tgiqFu7dW2 ul li::before {
  content: "\2022";
  color: #ffdc4d;
  font-weight: bold;
  font-size: 2rem;
  display: inline-block;
  width: 1.5rem;
  margin-left: -1.5rem;
  transform: translateY(5px);
}
.cid-tgiqFu7dW2 li {
  padding-bottom: 0rem;
  transition: all 0.3s;
}
.cid-tgiqFu7dW2 li a {
  font-weight: 600;
}
.cid-tgiqFu7dW2 li:hover {
  color: #ffdc4d;
}
.cid-tg7hdkfLfi {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tg7hdkfLfi .container-fluid {
  padding: 0;
}
.cid-tg7hdkfLfi .row {
  align-items: stretch;
  width: 100%;
}
.cid-tg7hdkfLfi .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-tg7hdkfLfi .col-text {
    width: 50%;
  }
}
.cid-tg7hdkfLfi .text-container {
  padding: 30% 4% 33% 8%;
}
@media (min-width: 808px) {
  .cid-tg7hdkfLfi .text-container {
    padding: 18% 35% 20% 7%;
  }
}
@media (min-width: 881px) {
  .cid-tg7hdkfLfi .text-container {
    padding: 14% 35% 15.3% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-tg7hdkfLfi .text-container {
    padding: 15% 15% 17% 20%;
  }
}
@media (min-width: 1441px) {
  .cid-tg7hdkfLfi .text-container {
    padding: 15.3% 35% 17.3% 20%;
  }
}
.cid-tg7hdkfLfi .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-tg7hdkfLfi .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-tg7hdkfLfi .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-tg7hdkfLfi .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-tg7hdkfLfi .btn-container {
  width: 100%;
}
.cid-tg7hdkfLfi .mbr-section-btn {
  margin-top: 20px;
}
.cid-tg7hdkfLfi .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-tg7hdkfLfi .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-tg7hdkfLfi .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-tg7hdkfLfi .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-tg7hdkfLfi .img-container img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tg7gutxqDa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffdf7;
}
.cid-tg7gutxqDa .mbr-overlay {
  z-index: 1;
}
.cid-tg7gutxqDa .main-container {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  padding: 0;
  position: relative;
  z-index: 2;
}
.cid-tg7gutxqDa .content {
  padding: 23px 35px 38px 33px;
  box-sizing: border-box;
  background-color: #bbbbbb;
}
.cid-tg7gutxqDa .content-wrap {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  max-width: 620px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-tg7gutxqDa .content-wrap {
    max-width: 100%;
  }
}
.cid-tg7gutxqDa .text-with-round,
.cid-tg7gutxqDa .mbr-section-title {
  width: 100%;
}
.cid-tg7gutxqDa .mbr-section-title {
  margin-bottom: 25px;
  font-weight: 500;
}
.cid-tg7gutxqDa .mbr-form-container {
  width: 100%;
  margin-top: auto;
}
.cid-tg7gutxqDa .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-top: 25px;
}
@media (max-width: 991px) {
  .cid-tg7gutxqDa .form-container {
    padding-top: 80px;
  }
}
.cid-tg7gutxqDa .form-name-email-container {
  display: flex;
  padding: 0;
  flex-wrap: wrap;
}
.cid-tg7gutxqDa .form-name {
  width: 100%;
  padding: 0;
}
.cid-tg7gutxqDa .form-email {
  width: 100%;
  padding: 0;
}
.cid-tg7gutxqDa .form-message-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  padding: 0;
}
.cid-tg7gutxqDa form .row {
  margin: 0;
  border: none !important;
}
.cid-tg7gutxqDa form .form-group {
  margin-bottom: 24px !important;
  width: 100%;
}
.cid-tg7gutxqDa form .form-group input,
.cid-tg7gutxqDa form .form-group textarea {
  padding: 5px 4px 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-tg7gutxqDa form .form-group input:hover,
.cid-tg7gutxqDa form .form-group textarea:hover,
.cid-tg7gutxqDa form .form-group input :focus,
.cid-tg7gutxqDa form .form-group textarea :focus,
.cid-tg7gutxqDa form .form-group input :active,
.cid-tg7gutxqDa form .form-group textarea :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-tg7gutxqDa form .form-message {
  margin-bottom: 0 !important;
}
.cid-tg7gutxqDa form .form-message textarea {
  min-height: 100px;
  resize: none;
}
.cid-tg7gutxqDa form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-tg7gutxqDa form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
  word-break: normal;
}
.cid-tg7gutxqDa .google-map {
  height: 686px;
  position: relative;
}
@media (min-width: 992px) {
  .cid-tg7gutxqDa .google-map {
    border-right: 1px solid #7F8678;
  }
}
.cid-tg7gutxqDa .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tg7gutxqDa .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tg7gutxqDa .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tg7gutxqDa .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tg7gutxqDa .row-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.cid-tkPeJkuU66 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkPeJkuU66 .side-section .col-img {
  flex: 0 0 80px;
}
.cid-tkPeJkuU66 .side-section .col-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.cid-tkPeJkuU66 .carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tkPeJkuU66 .carousel .carousel-container {
  position: relative;
}
.cid-tkPeJkuU66 .carousel .carousel-container .carousel-inner {
  border-radius: 20px;
}
.cid-tkPeJkuU66 .carousel .carousel-container .carousel-indicators {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 0;
  margin: 0;
  display: flex;
}
.cid-tkPeJkuU66 .carousel .carousel-container .carousel-indicators button {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin: 0 8px;
  padding: 0;
  border-radius: 50%;
  background-color: #ffe893;
  opacity: 1;
  transition: 0.4s ease;
}
.cid-tkPeJkuU66 .carousel .carousel-container .carousel-indicators .active {
  background-clip: padding-box;
  background-color: #c69c00;
}
.cid-tkPeJkuU66 .carousel .buttons-container {
  width: 80px;
  display: flex;
  justify-content: space-between;
}
.cid-tkPeJkuU66 .carousel .buttons-container button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.cid-tkPeJkuU66 .carousel .buttons-container button span {
  line-height: 2px;
  color: white;
}
.cid-tkPeJkuU66 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkPeJkuU66 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tgGc2nngZu {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-tgGc2nngZu li {
  list-style: none;
}
.cid-tgGc2nngZu .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.cid-tgGc2nngZu .item-wrap svg {
  fill: currentColor;
  margin-right: 3px;
}
.cid-tgGc2nngZu h4 {
  margin: 0;
}
.cid-tgGc2nngZu .item {
  display: flex;
  align-items: center;
}
.cid-tgGc2nngZu ul {
  padding: 0;
  margin: 0;
}
.cid-tgGc2nngZu .col-title {
  color: #1d2c35;
}
.cid-tgGc2nngZu .col-title .item-svg {
  margin-left: 0.625rem;
  fill: currentColor;
}
@media (max-width: 768px) {
  .cid-tgGc2nngZu .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-tgGc2nngZu .list {
  color: #1d2c35;
}
.cid-tfrvQHoTvg {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tfrvQHoTvg .card {
  display: block;
  position: relative;
}
.cid-tfrvQHoTvg .card .card-wrapper {
  background: #fafafa;
  height: 1%;
}
.cid-tfrvQHoTvg .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-tfrvQHoTvg .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-tfrvQHoTvg .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-tfrvQHoTvg .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-tfrvQHoTvg .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-tfrvQHoTvg .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-tfrvQHoTvg .mbr-card-text,
.cid-tfrvQHoTvg .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tfrvQHoTvg .mbr-title {
  text-align: center;
}
.cid-tjAkJSAkXu {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tjAkJSAkXu img,
.cid-tjAkJSAkXu .item-img {
  width: 100%;
}
.cid-tjAkJSAkXu .item:focus,
.cid-tjAkJSAkXu span:focus {
  outline: none;
}
.cid-tjAkJSAkXu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tjAkJSAkXu .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 30px;
  width: 100%;
}
.cid-tjAkJSAkXu .mbr-text {
  margin-bottom: 0;
  color: #000000;
  text-align: left;
}
.cid-tjAkJSAkXu .item-title {
  color: #000000;
  margin-bottom: 28px;
  text-align: left;
}
.cid-tjAkJSAkXu .carousel-inner {
  margin: auto;
  width: 87%;
}
.cid-tjAkJSAkXu .carousel,
.cid-tjAkJSAkXu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tjAkJSAkXu .carousel-caption {
  bottom: 40px;
}
.cid-tjAkJSAkXu .mobi-mbri {
  font-size: 25px;
  opacity: 1;
  color: #fff8ef;
}
.cid-tjAkJSAkXu .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tjAkJSAkXu .carousel-control {
  opacity: 1;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tjAkJSAkXu .carousel-control.carousel-control-prev {
  left: 1%;
}
@media (max-width: 992px) {
  .cid-tjAkJSAkXu .carousel-control.carousel-control-prev {
    left: 5%;
  }
}
.cid-tjAkJSAkXu .carousel-control.carousel-control-next {
  right: 51%;
}
@media (max-width: 992px) {
  .cid-tjAkJSAkXu .carousel-control.carousel-control-next {
    right: 45%;
  }
}
.cid-tjAkJSAkXu .carousel-indicators {
  position: absolute;
  bottom: 0;
}
.cid-tjAkJSAkXu .carousel-indicators li {
  max-width: 6px;
  height: 6px;
  width: 6px;
  max-height: 6px;
  margin: 5px;
  background-color: #181818;
  opacity: 0.2;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tjAkJSAkXu .carousel-indicators li.active,
.cid-tjAkJSAkXu .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tjAkJSAkXu .carousel-indicators li::after,
.cid-tjAkJSAkXu .carousel-indicators li::before {
  content: none;
}
.cid-tjAkJSAkXu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-tjAkJSAkXu .row {
  align-items: center;
}
.cid-tjAkJSAkXu a {
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-tjAkJSAkXu .carousel-control {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-tjAkJSAkXu .carousel-inner {
    width: 100%;
  }
  .cid-tjAkJSAkXu .item-content {
    padding-top: 20px;
  }
}
.cid-tjqhcyFVyj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #e9e9e9;
  position: relative;
  overflow: hidden;
}
.cid-tjqhcyFVyj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjqhcyFVyj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjqhcyFVyj .row {
  justify-content: center;
}
.cid-tjqhcyFVyj .mbr-section-title {
  color: #161616;
  width: 100%;
}
.cid-tjqhcyFVyj .mbr-section-subtitle {
  color: #161616;
  width: 100%;
}
.cid-tjqhcyFVyj .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 8px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 20px;
  color: #161616;
  margin-bottom: 1rem;
  width: min-content;
}
@media (max-width: 575px) {
  .cid-tjqhcyFVyj .mbr-iconfont {
    margin-bottom: 0;
    margin-right: 12px;
    padding: 5px;
  }
}
.cid-tjqhcyFVyj .card-row {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cid-tjqhcyFVyj .card-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 576px) {
  .cid-tjqhcyFVyj .card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tjqhcyFVyj .card:nth-child(n+3) {
    margin-top: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tjqhcyFVyj .card:nth-child(n+2) {
    margin-top: 56px;
  }
}
.cid-tjqhcyFVyj .card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .cid-tjqhcyFVyj .card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-tjqhcyFVyj .card-title {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
}
.cid-tjqhcyFVyj .card-text {
  color: #161616;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1rem;
  text-align: center;
}
.cid-tjqhcyFVyj .circle-blur {
  position: absolute;
  top: -5%;
  right: -5% !important;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -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;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-tjqhcyFVyj .card-title,
.cid-tjqhcyFVyj .iconfont-wrapper {
  text-align: center;
}
.cid-tjqhlvQ0h1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tjqhlvQ0h1 h2,
.cid-tjqhlvQ0h1 h3,
.cid-tjqhlvQ0h1 h4,
.cid-tjqhlvQ0h1 p {
  margin: 0;
}
.cid-tjqhlvQ0h1 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tjqhlvQ0h1 .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-tjqhlvQ0h1 .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-tjqhmgWTgh {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tjqhmgWTgh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tjqhmgWTgh .container-fluid {
    padding: 0 3rem;
  }
}
.cid-tjqhmgWTgh .row {
  align-items: center;
}
.cid-tjqhmgWTgh img {
  width: 100%;
  height: 100%;
}
.cid-tjqhmgWTgh .col-lg-3 {
  height: 300px;
}
.cid-tjqhmgWTgh .col-lg-2 {
  height: 400px;
}
.cid-tjqhmgWTgh .image-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tjqhmgWTgh .image-wrapper img {
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tjqhmgWTgh .col-12 {
    margin-bottom: 3rem;
  }
}
.cid-tjqhq1Au7D {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #e9e9e9;
}
.cid-tjqhq1Au7D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjqhq1Au7D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjqhq1Au7D .mbr-iconfont {
  display: flex;
  font-size: 1rem;
  color: white;
  margin-bottom: 2rem;
  width: 30px;
  height: 30px;
  background: #000000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tjqhq1Au7D .mbr-iconfont {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tjqhq1Au7D .card-wrapper {
  margin-top: 3rem;
}
.cid-tjAa0SKtny {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tjAa0SKtny .item-subtitle {
  color: #000000;
}
.cid-tjAa0SKtny .item-subtitle a {
  font-weight: 600;
}
.cid-tjAa0SKtny .row {
  justify-content: space-between;
}
.cid-tjAa0SKtny .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tjAa0SKtny .item:hover img {
  transform: scale(1.05);
}
.cid-tjAa0SKtny .item-img {
  overflow: hidden;
}
.cid-tjAa0SKtny img,
.cid-tjAa0SKtny .item-img {
  width: 100%;
  transition: all 1s;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tjAa0SKtny h5 {
  margin: 0;
}
.cid-tjAa0SKtny .item:focus,
.cid-tjAa0SKtny span:focus {
  outline: none;
}
.cid-tjAa0SKtny .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tjAa0SKtny .item-content {
  padding-top: 2rem;
}
.cid-tjAa0SKtny .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tjAa0SKtny .item-title {
  color: #666666;
}
.cid-tjA9L220SS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-tjA9L220SS .mbr-overlay {
  z-index: 1;
}
.cid-tjA9L220SS .main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  padding: 130px 32px;
  position: relative;
  z-index: 2;
}
.cid-tjA9L220SS .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tjA9L220SS .content {
    max-width: 975px;
  }
}
.cid-tjA9L220SS .text-with-round,
.cid-tjA9L220SS .mbr-section-title {
  width: 100%;
}
.cid-tjA9L220SS .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tjA9L220SS .mbr-form-container {
  width: 100%;
  margin-top: 12px;
}
.cid-tjA9L220SS .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-top: 25px;
}
.cid-tjA9L220SS .form-name-email-container {
  display: flex;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tjA9L220SS .form-name-email-container {
    flex-wrap: wrap;
  }
}
.cid-tjA9L220SS .form-name {
  padding-right: 15px;
}
@media (max-width: 991px) {
  .cid-tjA9L220SS .form-name {
    width: 100%;
    padding: 0;
  }
}
.cid-tjA9L220SS .form-email {
  padding-left: 15px;
}
@media (max-width: 991px) {
  .cid-tjA9L220SS .form-email {
    width: 100%;
    padding: 0;
  }
}
.cid-tjA9L220SS .form-message-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  padding: 0;
}
.cid-tjA9L220SS form .row {
  margin: 0;
  border: none !important;
}
.cid-tjA9L220SS form .form-group {
  flex-grow: 1;
  margin-bottom: 24px !important;
}
@media (max-width: 991px) {
  .cid-tjA9L220SS form .form-group {
    width: 100%;
  }
}
.cid-tjA9L220SS form .form-group input,
.cid-tjA9L220SS form .form-group textarea {
  padding: 5px 4px 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-tjA9L220SS form .form-group input:hover,
.cid-tjA9L220SS form .form-group textarea:hover,
.cid-tjA9L220SS form .form-group input :focus,
.cid-tjA9L220SS form .form-group textarea :focus,
.cid-tjA9L220SS form .form-group input :active,
.cid-tjA9L220SS form .form-group textarea :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-tjA9L220SS form .form-message {
  margin-bottom: 0 !important;
}
.cid-tjA9L220SS form .form-message textarea {
  min-height: 100px;
  resize: none;
}
.cid-tjA9L220SS form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-tjA9L220SS form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
}
.cid-tjAipDKHj7 {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tjAipDKHj7 .row {
  flex-direction: row-reverse;
}
.cid-tjAipDKHj7 .container-fluid {
  padding: 0;
}
.cid-tjAipDKHj7 .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-tjAipDKHj7 .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-tjAipDKHj7 .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-tjAipDKHj7 .content-wrapper .text {
    padding: 200px 190px;
  }
}
.cid-tjAipDKHj7 .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-tjAipDKHj7 .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tjAipDKHj7 .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-tjAipDKHj7 .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-tjAipDKHj7 .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-tjw5aAuduJ {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tjw5aAuduJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tjw5aAuduJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tjw5aAuduJ .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-tjw5o64lvg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tjw5o64lvg .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-tjw5o64lvg .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-tjw5o64lvg .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tjw5o64lvg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-tjw5o64lvg .item {
    padding: 0 3rem;
  }
}
.cid-tjw5o64lvg img,
.cid-tjw5o64lvg .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 350px;
  object-fit: cover;
}
.cid-tjw5o64lvg .item:focus,
.cid-tjw5o64lvg span:focus {
  outline: none;
}
.cid-tjw5o64lvg .mbr-section-title {
  color: #101112;
}
.cid-tjw5o64lvg .mbr-text,
.cid-tjw5o64lvg .mbr-section-btn {
  color: #353535;
}
.cid-tjw5o64lvg .mbr-section-subtitle {
  color: #353535;
}
.cid-tjw5o64lvg .mbr-section-subtitle,
.cid-tjw5o64lvg .main-btn {
  text-align: left;
}
.cid-tjw5oYOq0j {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-tjw5oYOq0j .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjw5oYOq0j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjw5oYOq0j .row {
  justify-content: flex-start;
}
.cid-tjw5oYOq0j .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
  text-align: center;
}
.cid-tjw5oYOq0j .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: left;
}
.cid-tjw642sKKJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f7f7f7;
}
.cid-tjw642sKKJ .mbr-section-title {
  margin-bottom: 56px;
}
.cid-tjw642sKKJ .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-tjw642sKKJ .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tjw642sKKJ .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tjw642sKKJ .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tjw642sKKJ .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tjw642sKKJ .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tjw642sKKJ .shadow:hover .mbr-iconfont,
.cid-tjw642sKKJ .shadow:hover .number,
.cid-tjw642sKKJ .shadow:hover .card-title {
  color: #c69c00 !important;
}
.cid-tjw642sKKJ .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tjw642sKKJ .card-title {
  margin-bottom: 10px;
}
.cid-tjw642sKKJ .card-title span,
.cid-tjw642sKKJ .card-title .number {
  transition: 0.35s;
}
.cid-tjw642sKKJ .card-text {
  margin-bottom: 32px;
  color: #8c8c95;
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-tjw642sKKJ .card-wrapper {
    padding: 60px 30px 40px;
  }
}
@media (max-width: 574px) {
  .cid-tjw642sKKJ .card-wrapper {
    padding: 60px 30px 40px;
  }
}
.cid-tjw642sKKJ H3 {
  color: #14142b;
  text-align: center;
}
.cid-tjw642sKKJ img {
  width: auto;
  height: 70px;
}
.cid-tjw642sKKJ .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 37px 32px 43px;
}
.cid-tjw642sKKJ .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-tjw642sKKJ .link-title {
  display: inline-block;
}
.cid-tjw642sKKJ .episode {
  color: #ffffff;
}
.cid-tjw642sKKJ .img-title {
  color: #ffffff;
}
.cid-tjw642sKKJ .margin {
  margin-right: 14px;
}
.cid-tjw642sKKJ .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tjw642sKKJ .mbr-section-btn {
  width: auto;
  display: inline;
}
@media (max-width: 500px) {
  .cid-tjw642sKKJ .button-align {
    display: flex;
    flex-direction: column;
  }
  .cid-tjw642sKKJ .margin {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .cid-tjw642sKKJ .card-wrapper {
    padding: 24px 25px 34px 25px;
  }
}
.cid-tjw642sKKJ span,
.cid-tjw642sKKJ .number {
  transition: 0.35s;
}
.cid-tjw642sKKJ .item.features-image {
  margin-top: 30px;
}
.cid-tjw642sKKJ .item.features-image:nth-child(1) {
  margin-top: 0px;
}
.cid-tjw642sKKJ .item.features-image:nth-child(2) {
  margin-top: 0px;
}
.cid-tjw642sKKJ .item.features-image:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-tjw642sKKJ .item.features-image:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .cid-tjw642sKKJ .item.features-image:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-tjw5DB4sB7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tjw5DB4sB7 .container-fluid {
  padding: 0;
}
.cid-tjw5DB4sB7 .row {
  align-items: stretch;
  width: 100%;
}
.cid-tjw5DB4sB7 .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-tjw5DB4sB7 .col-text {
    width: 50%;
  }
}
.cid-tjw5DB4sB7 .text-container {
  padding: 30% 4% 33% 8%;
}
@media (min-width: 768px) {
  .cid-tjw5DB4sB7 .text-container {
    padding: 18% 35% 20% 7%;
  }
}
@media (min-width: 881px) {
  .cid-tjw5DB4sB7 .text-container {
    padding: 14% 35% 15.3% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-tjw5DB4sB7 .text-container {
    padding: 15% 15% 17% 20%;
  }
}
@media (min-width: 1441px) {
  .cid-tjw5DB4sB7 .text-container {
    padding: 15.3% 35% 17.3% 20%;
  }
}
.cid-tjw5DB4sB7 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-tjw5DB4sB7 .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-tjw5DB4sB7 .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-tjw5DB4sB7 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-tjw5DB4sB7 .btn-container {
  width: 100%;
}
.cid-tjw5DB4sB7 .mbr-section-btn {
  margin-top: 20px;
}
.cid-tjw5DB4sB7 .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-tjw5DB4sB7 .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-tjw5DB4sB7 .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-tjw5DB4sB7 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-tjw5DB4sB7 .img-container img {
  max-width: 100%;
  max-height: 90%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tjA6mdui18 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-tjA6mdui18 .mbr-overlay {
  z-index: 1;
}
.cid-tjA6mdui18 .main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  padding: 130px 32px;
  position: relative;
  z-index: 2;
}
.cid-tjA6mdui18 .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tjA6mdui18 .content {
    max-width: 975px;
  }
}
.cid-tjA6mdui18 .text-with-round,
.cid-tjA6mdui18 .mbr-section-title {
  width: 100%;
}
.cid-tjA6mdui18 .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tjA6mdui18 .mbr-form-container {
  width: 100%;
  margin-top: 12px;
}
.cid-tjA6mdui18 .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-top: 25px;
}
.cid-tjA6mdui18 .form-name-email-container {
  display: flex;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tjA6mdui18 .form-name-email-container {
    flex-wrap: wrap;
  }
}
.cid-tjA6mdui18 .form-name {
  padding-right: 15px;
}
@media (max-width: 991px) {
  .cid-tjA6mdui18 .form-name {
    width: 100%;
    padding: 0;
  }
}
.cid-tjA6mdui18 .form-email {
  padding-left: 15px;
}
@media (max-width: 991px) {
  .cid-tjA6mdui18 .form-email {
    width: 100%;
    padding: 0;
  }
}
.cid-tjA6mdui18 .form-message-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  padding: 0;
}
.cid-tjA6mdui18 form .row {
  margin: 0;
  border: none !important;
}
.cid-tjA6mdui18 form .form-group {
  flex-grow: 1;
  margin-bottom: 24px !important;
}
@media (max-width: 991px) {
  .cid-tjA6mdui18 form .form-group {
    width: 100%;
  }
}
.cid-tjA6mdui18 form .form-group input,
.cid-tjA6mdui18 form .form-group textarea {
  padding: 5px 4px 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-tjA6mdui18 form .form-group input:hover,
.cid-tjA6mdui18 form .form-group textarea:hover,
.cid-tjA6mdui18 form .form-group input :focus,
.cid-tjA6mdui18 form .form-group textarea :focus,
.cid-tjA6mdui18 form .form-group input :active,
.cid-tjA6mdui18 form .form-group textarea :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-tjA6mdui18 form .form-message {
  margin-bottom: 0 !important;
}
.cid-tjA6mdui18 form .form-message textarea {
  min-height: 100px;
  resize: none;
}
.cid-tjA6mdui18 form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-tjA6mdui18 form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
}
.cid-tgclAbV4A0 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #f8f8f8;
}
.cid-tgclAbV4A0 .container {
  max-width: 1500px;
}
.cid-tgclAbV4A0 .row {
  background: #333333;
}
.cid-tgclAbV4A0 .img-col {
  padding: 0;
}
.cid-tgclAbV4A0 .title-col {
  padding: 4rem 6rem;
}
.cid-tgclAbV4A0 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tgclAbV4A0 h2 {
  padding: 0;
  margin: 0;
}
.cid-tgclAbV4A0 .text-wrap {
  margin: auto;
}
.cid-tgclAbV4A0 .mbr-text {
  color: #cccccc;
  text-align: center;
}
@media (max-width: 1500px) {
  .cid-tgclAbV4A0 .row {
    margin: 2rem;
  }
  .cid-tgclAbV4A0 .title-col {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tgclAbV4A0 .row {
    margin: 0rem;
  }
  .cid-tgclAbV4A0 .title-col {
    padding: 2rem 1rem;
  }
}
.cid-tgclAbV4A0 H2 {
  text-align: center;
}
.cid-tjqmdES0bN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tjqmdES0bN .card-wrapper {
  background: #f2f2f2;
  padding: 30px 30px 60px;
  margin: 25px 0 0;
}
.cid-tjqmdES0bN .card-wrapper .image-wrap img {
  width: 100%;
}
.cid-tjqmdES0bN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #c69c00;
  margin-bottom: 2rem;
}
.cid-tjqmdES0bN .row {
  justify-content: center;
}
.cid-tjqmdES0bN .mbr-section-title {
  padding: 0;
  padding-bottom: 45px;
  margin: 0;
}
@media (max-width: 690px) {
  .cid-tjqmdES0bN .item {
    padding-bottom: 25px;
  }
}
.cid-tjvlvWk68Y {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjvlvWk68Y .mbr-section-subtitle {
  color: #767676;
  text-align: left;
  line-height: 1.6;
}
.cid-tjvlvWk68Y .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-tjvlvWk68Y .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tjvlvWk68Y h4 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-tjvlvWk68Y h4:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tjvlvWk68Y h4:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tjvlvWk68Y .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-tjvlvWk68Y .card-overlay {
  display: none;
  background: #000000;
}
@media (min-width: 768px) {
  .cid-tjvlvWk68Y .image-element:hover .card-overlay {
    opacity: 0.7;
    border-bottom-right-radius: 7rem;
  }
  .cid-tjvlvWk68Y .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-tjvlvWk68Y .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-tjvlvWk68Y .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-tjvlvWk68Y .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tjvlvWk68Y .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tjvlvWk68Y .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tjvlvWk68Y .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-tjvlvWk68Y .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
  }
  .cid-tjvlvWk68Y .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-tjvlvWk68Y .card-overlay {
    transition: all 0.5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-tjvlvWk68Y .card-title,
  .cid-tjvlvWk68Y .underline,
  .cid-tjvlvWk68Y .mbr-text,
  .cid-tjvlvWk68Y .mbr-section-btn,
  .cid-tjvlvWk68Y .mbr-section-subtitle,
  .cid-tjvlvWk68Y .mbr-section-title {
    text-align: center !important;
  }
  .cid-tjvlvWk68Y .wrapper {
    background-color: #000000;
  }
  .cid-tjvlvWk68Y h4:before,
  .cid-tjvlvWk68Y h4:after {
    display: none;
  }
}
.cid-tjvlvWk68Y .mbr-section-title {
  text-align: left;
}
.cid-tjvlvWk68Y .mbr-section-title,
.cid-tjvlvWk68Y .underline {
  text-align: center;
}
.cid-tjvlvWk68Y H4 {
  color: #e1201d;
}
.cid-tgdv4aHULh {
  padding-top: 45px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tgdv4aHULh .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tgdv4aHULh .mbr-section-title,
.cid-tgdv4aHULh .mbr-section-subtitle,
.cid-tgdv4aHULh .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tgdv4aHULh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgdv4aHULh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgdv4aHULh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgdv4aHULh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgdv4aHULh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #c19b76);
}
.cid-tgdv4aHULh .icon-focus {
  display: none;
}
.cid-tgdv4aHULh .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tgdv4aHULh ul {
  font-size: 0;
}
.cid-tgdv4aHULh .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-tgdv4aHULh .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-tgdv4aHULh .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-tgdv4aHULh .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tgdv4aHULh .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tgdv4aHULh .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tgdv4aHULh .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tgdv4aHULh .btn:hover {
  background: transparent !important;
}
.cid-tgdv4aHULh .btn:hover:before {
  background: transparent !important;
}
.cid-tgdv4aHULh .btn:before {
  background-color: transparent !important;
}
.cid-tgdv4aHULh .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-tgdvLQZjUC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-tgdvLQZjUC .mbr-overlay {
  z-index: 1;
}
.cid-tgdvLQZjUC .main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  padding: 130px 32px;
  position: relative;
  z-index: 2;
}
.cid-tgdvLQZjUC .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tgdvLQZjUC .content {
    max-width: 975px;
  }
}
.cid-tgdvLQZjUC .text-with-round,
.cid-tgdvLQZjUC .mbr-section-title {
  width: 100%;
}
.cid-tgdvLQZjUC .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tgdvLQZjUC .mbr-form-container {
  width: 100%;
  margin-top: 12px;
}
.cid-tgdvLQZjUC .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-top: 25px;
}
.cid-tgdvLQZjUC .form-name-email-container {
  display: flex;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tgdvLQZjUC .form-name-email-container {
    flex-wrap: wrap;
  }
}
.cid-tgdvLQZjUC .form-name {
  padding-right: 15px;
}
@media (max-width: 991px) {
  .cid-tgdvLQZjUC .form-name {
    width: 100%;
    padding: 0;
  }
}
.cid-tgdvLQZjUC .form-email {
  padding-left: 15px;
}
@media (max-width: 991px) {
  .cid-tgdvLQZjUC .form-email {
    width: 100%;
    padding: 0;
  }
}
.cid-tgdvLQZjUC .form-message-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  padding: 0;
}
.cid-tgdvLQZjUC form .row {
  margin: 0;
  border: none !important;
}
.cid-tgdvLQZjUC form .form-group {
  flex-grow: 1;
  margin-bottom: 24px !important;
}
@media (max-width: 991px) {
  .cid-tgdvLQZjUC form .form-group {
    width: 100%;
  }
}
.cid-tgdvLQZjUC form .form-group input,
.cid-tgdvLQZjUC form .form-group textarea {
  padding: 5px 4px 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-tgdvLQZjUC form .form-group input:hover,
.cid-tgdvLQZjUC form .form-group textarea:hover,
.cid-tgdvLQZjUC form .form-group input :focus,
.cid-tgdvLQZjUC form .form-group textarea :focus,
.cid-tgdvLQZjUC form .form-group input :active,
.cid-tgdvLQZjUC form .form-group textarea :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-tgdvLQZjUC form .form-message {
  margin-bottom: 0 !important;
}
.cid-tgdvLQZjUC form .form-message textarea {
  min-height: 100px;
  resize: none;
}
.cid-tgdvLQZjUC form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-tgdvLQZjUC form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
}
.cid-tgdCvq9uD9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tgdCvq9uD9 .mbr-text,
.cid-tgdCvq9uD9 .mbr-section-btn {
  color: #272727;
}
.cid-tgdCvq9uD9 ul {
  list-style: none;
  margin: 0;
  padding-left: 1.6rem;
}
.cid-tgdCvq9uD9 ul li::before {
  content: "\2022";
  color: #ffdc4d;
  font-weight: bold;
  font-size: 2rem;
  display: inline-block;
  width: 1.5rem;
  margin-left: -1.5rem;
  transform: translateY(5px);
}
.cid-tgdCvq9uD9 li {
  padding-bottom: 0rem;
  transition: all 0.3s;
}
.cid-tgdCvq9uD9 li a {
  font-weight: 600;
}
.cid-tgdCvq9uD9 li:hover {
  color: #ffdc4d;
}
.cid-tkgxIycdoT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9e9e9;
}
.cid-tkgxIycdoT .card-wrap-1 {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-tkgxIycdoT .card-wrap-2 {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tkgxIycdoT .card-1 {
  width: 550px;
  padding: 40px 70px;
  margin: 0 0 3rem 0;
  background: #ffe161;
}
@media (max-width: 998px) {
  .cid-tkgxIycdoT .card-1 {
    width: auto;
    padding: 20px;
    margin: 0 0 10px 0;
  }
}
.cid-tkgxIycdoT .card-1 .mbr-section-title {
  margin-bottom: 13px;
}
.cid-tkgxIycdoT .card-1 .mbr-section-text {
  margin-bottom: 16px;
}
.cid-tkgxIycdoT .card-1 .list {
  margin: 0;
  padding-left: 18px;
  list-style-position: inside;
}
.cid-tkgxIycdoT .card-1 .list li::marker {
  color: #ffdc4d;
}
.cid-tkgxIycdoT .image-wrapper img {
  height: 700px;
  width: 130%;
  object-fit: cover;
}
.cid-tkgxIycdoT .card-2 {
  width: 304px;
  padding: 40px 30px;
  margin: -2rem 0 0 -3rem;
  background: #272727;
}
@media (max-width: 1300px) {
  .cid-tkgxIycdoT .card-2 {
    margin: -2rem 0 0 -1rem;
  }
}
@media (max-width: 1100px) {
  .cid-tkgxIycdoT .card-2 {
    width: 350px;
  }
}
@media (max-width: 998px) {
  .cid-tkgxIycdoT .card-2 {
    width: auto;
    padding: 20px;
    margin: 43px 0 0 0;
  }
}
.cid-tkgxIycdoT .card-2 .mbr-title {
  margin-bottom: 13px;
}
.cid-tkgxIycdoT .card-2 .mbr-text {
  margin-bottom: 18px;
  opacity: .7;
}
.cid-tkgxIycdoT .btn {
  height: 55px;
  min-width: 170px;
  border: 2px solid #c69c00 !important;
  margin-top: 10px;
  margin-bottom: 0;
  box-shadow: none;
}
.cid-tkgxIycdoT .btn:hover {
  box-shadow: none;
  border: 2px solid #c69c00 !important;
}
.cid-tkgxIycdoT .mbr-section-title {
  color: #20232a;
  text-align: center;
}
.cid-tkgxIycdoT .mbr-section-text {
  color: #101112;
  text-align: left;
}
.cid-tkgxIycdoT .list {
  color: #101112;
  text-align: left;
}
.cid-tkgxIycdoT .mbr-title {
  color: #FFFFFF;
}
.cid-tkgxIycdoT .mbr-text {
  color: #FFFFFF;
}
.cid-tkgDRHqKMi {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkgDRHqKMi .side-section .col-img {
  flex: 0 0 80px;
}
.cid-tkgDRHqKMi .side-section .col-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.cid-tkgDRHqKMi .carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tkgDRHqKMi .carousel .carousel-container {
  position: relative;
}
.cid-tkgDRHqKMi .carousel .carousel-container .carousel-inner {
  border-radius: 20px;
}
.cid-tkgDRHqKMi .carousel .carousel-container .carousel-indicators {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 0;
  margin: 0;
  display: flex;
}
.cid-tkgDRHqKMi .carousel .carousel-container .carousel-indicators button {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin: 0 8px;
  padding: 0;
  border-radius: 50%;
  background-color: #ffe893;
  opacity: 1;
  transition: 0.4s ease;
}
.cid-tkgDRHqKMi .carousel .carousel-container .carousel-indicators .active {
  background-clip: padding-box;
  background-color: #c69c00;
}
.cid-tkgDRHqKMi .carousel .buttons-container {
  width: 80px;
  display: flex;
  justify-content: space-between;
}
.cid-tkgDRHqKMi .carousel .buttons-container button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.cid-tkgDRHqKMi .carousel .buttons-container button span {
  line-height: 2px;
  color: white;
}
.cid-tkgDRHqKMi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkgDRHqKMi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkgH2h40bs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #dddddd;
}
.cid-tkgH2h40bs .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: .75rem;
}
.cid-tkgH2h40bs .card {
  margin-bottom: 1.5rem;
}
.cid-tkgH2h40bs .card-wrapper {
  overflow: visible;
  padding: 2.5rem 1.5rem;
  border-bottom: 8px solid grey;
  background-color: #f5f9fc;
}
@media (max-width: 767px) {
  .cid-tkgH2h40bs .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tkgH2h40bs .card-wrapper-1 {
  border-color: #dec560;
}
.cid-tkgH2h40bs .card-wrapper-2 {
  border-color: #ffe161;
}
.cid-tkgH2h40bs .card-wrapper-3 {
  border-color: #fff0b0;
}
.cid-tkgH2h40bs .card-wrapper-4 {
  border-color: #eec39c;
}
.cid-tkgH2h40bs .card-wrapper-5 {
  border-color: #d4e7eb;
}
.cid-tkgH2h40bs .card-wrapper-6 {
  border-color: #67beb0;
}
.cid-tkgH2h40bs .card-text {
  text-align: left;
}
.cid-tkgH2h40bs .card-number {
  color: #000000;
  text-align: left;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-tkgH2h40bs .card-number {
    text-align: center;
  }
}
.cid-tkgH2h40bs .mbr-section-title {
  text-align: center;
}
.cid-tkgH2h40bs .mbr-section-title {
  margin-bottom: 1.5rem;
}
.cid-tkgeV6dS62 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tkgeV6dS62 .google-map {
  height: 35rem;
  position: relative;
}
.cid-tkgeV6dS62 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tkgeV6dS62 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tkgeV6dS62 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tkgeV6dS62 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tlSn1eqAte {
  background-color: #ffffff;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (min-width: 768px) {
  .cid-tlSn1eqAte .carousel {
    height: 640px;
  }
}
@media (max-width: 767px) {
  .cid-tlSn1eqAte .carousel {
    height: 60vh;
  }
}
.cid-tlSn1eqAte .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tlSn1eqAte .carousel-item,
.cid-tlSn1eqAte .carousel-inner {
  height: 100%;
}
.cid-tlSn1eqAte .content_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 0 15%;
  text-align: center;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-tlSn1eqAte .content_wrap {
    padding: 100px 15%;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tlSn1eqAte .content_wrap {
    padding: 60px 12px;
  }
}
.cid-tlSn1eqAte .carousel-item,
.cid-tlSn1eqAte .carousel-inner {
  height: 100%;
}
.cid-tlSn1eqAte .mbr-section-title {
  margin-bottom: 25px;
  color: #202020;
}
.cid-tlSn1eqAte .mbr-section-btn {
  margin-top: 42px;
}
.cid-tlSn1eqAte .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tlSn1eqAte .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tlSn1eqAte .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-tlSn1eqAte .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-tlSn1eqAte .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tlSn1eqAte .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tlSn1eqAte .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tlSn1eqAte .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tlSn1eqAte .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: #dddddd;
  border: 1px solid #dddddd;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-tlSn1eqAte .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: -1.9rem;
}
.cid-tlSn1eqAte .carousel-control.carousel-control-next {
  right: 0;
  margin-right: -1.9rem;
}
.cid-tlSn1eqAte .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-tlSn1eqAte .carousel-control {
    display: none !important;
  }
}
.cid-tlSn1eqAte .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-tlSn1eqAte .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 10px;
  background-color: #dddddd;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-tlSn1eqAte .carousel-indicators li.active,
.cid-tlSn1eqAte .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-tlSn1eqAte .carousel-indicators li::after,
.cid-tlSn1eqAte .carousel-indicators li::before {
  content: none;
}
.cid-tlSn1eqAte .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tlSn1eqAte .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tlSn1eqAte .height_100 {
    height: 100%;
  }
}
.cid-uIPOi2Ixp3 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uIPOi2Ixp3 .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: .75rem;
}
.cid-uIPOi2Ixp3 .card {
  margin-bottom: 1.5rem;
}
.cid-uIPOi2Ixp3 .card-wrapper {
  overflow: visible;
  padding: 2.5rem 1.5rem;
  border-bottom: 8px solid grey;
  background-color: #f5f9fc;
}
@media (max-width: 767px) {
  .cid-uIPOi2Ixp3 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uIPOi2Ixp3 .card-wrapper-1 {
  border-color: #ffdc4d;
}
.cid-uIPOi2Ixp3 .card-wrapper-2 {
  border-color: #ffe161;
}
.cid-uIPOi2Ixp3 .card-wrapper-3 {
  border-color: #fff0b0;
}
.cid-uIPOi2Ixp3 .card-wrapper-4 {
  border-color: #eec39c;
}
.cid-uIPOi2Ixp3 .card-wrapper-5 {
  border-color: #d4e7eb;
}
.cid-uIPOi2Ixp3 .card-wrapper-6 {
  border-color: #67beb0;
}
.cid-uIPOi2Ixp3 .card-text {
  text-align: center;
  color: #000000;
}
.cid-uIPOi2Ixp3 .card-number {
  color: #000000;
  text-align: left;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uIPOi2Ixp3 .card-number {
    text-align: center;
  }
}
.cid-uIPOi2Ixp3 .mbr-section-title {
  text-align: center;
}
.cid-uIQ1bm4rCk {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #272727;
}
.cid-uIQ1bm4rCk .google-map {
  height: 35rem;
  position: relative;
}
.cid-uIQ1bm4rCk .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uIQ1bm4rCk .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uIQ1bm4rCk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uIQ1bm4rCk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uIQ1bm4rCk .mbr-section-title {
  color: #ffffff;
}
.cid-uIQ1bm4rCk .mbr-section-subtitle {
  color: #ffdc4d;
}
#custom-html-7z {
  /**
	Navik - HTML header navigation menu - v1.4.3
 	Copyright (c) 2022, Pophonic

	Author: Pophonic
	Profile: https://codecanyon.net/user/pophonic

**/
  /***************************************************
	Default menu
****************************************************/
  /***************************************************
  Burger menu
****************************************************/
  /***************************************************
  Dark version menu
****************************************************/
  /***************************************************
  Mega menu
****************************************************/
  /***************************************************
  Mega menu dark
****************************************************/
  /***************************************************
  Menu icons
****************************************************/
  /***************************************************
  Media queries for responsive design
****************************************************/
  /*# sourceMappingURL=navik-horizontal-default-menu.css.map */
}
#custom-html-7z .navik-header {
  position: relative;
  z-index: 99999;
  box-sizing: border-box;
  font-size: 20px;
  line-height: 1.428572;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
#custom-html-7z .navik-header *,
#custom-html-7z .navik-header *::before,
#custom-html-7z .navik-header *::after {
  box-sizing: border-box;
}
#custom-html-7z .navik-header::before,
#custom-html-7z .navik-header::after {
  box-sizing: border-box;
}
#custom-html-7z .navik-header ul {
  padding-left: 0;
  margin-bottom: inherit;
}
#custom-html-7z .navik-header img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
#custom-html-7z .navik-header a:hover,
#custom-html-7z .navik-header a:focus,
#custom-html-7z .navik-header a:active {
  text-decoration: none;
  outline: none;
}
#custom-html-7z .navik-header .logo {
  padding: 50px 50px;
  text-align: center;
}
#custom-html-7z .navik-header .logo img {
  max-width: 100%;
  height: auto;
}
#custom-html-7z .navik-header-container {
  position: relative;
}
#custom-html-7z .navik-menu > ul {
  display: none;
  padding: 0 0 50px;
}
#custom-html-7z .navik-menu ul li {
  position: relative;
}
#custom-html-7z .navik-menu ul li > a {
  display: block;
  padding: 14px 15px;
  font-family: "Fira Sans", sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
#custom-html-7z .navik-menu ul li.current-menu > a,
#custom-html-7z .navik-menu ul li:hover > a {
  color: #FFFFFF;
  background-color: #f6f6f6;
}
#custom-html-7z .navik-menu ul ul li > a {
  padding: 14px 15px 14px 30px;
  font-size: 14px;
  font-style: italic;
  text-transform: inherit;
  background-color: #c69c00;
}
#custom-html-7z .navik-menu ul ul li:hover > a {
  background-color: #c69c00;
}
#custom-html-7z .navik-menu ul ul ul li > a {
  padding: 15px 15px 15px 45px;
}
#custom-html-7z .navik-menu li > ul {
  display: none;
}
#custom-html-7z .dropdown-plus {
  position: absolute;
  top: 0;
  right: 0;
  width: 49px;
  height: 49px;
  line-height: 49px;
  cursor: pointer;
}
#custom-html-7z .dropdown-plus::before,
#custom-html-7z .dropdown-plus::after {
  position: absolute;
  top: 24px;
  right: 18px;
  width: 13px;
  height: 1px;
  content: "";
  background-color: #111;
}
#custom-html-7z .dropdown-plus::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#custom-html-7z .dropdown-plus.dropdown-open::after {
  display: none;
}
#custom-html-7z .header-shadow-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 30px;
  overflow: hidden;
}
#custom-html-7z .header-shadow-wrapper::after {
  position: relative;
  top: -60px;
  display: block;
  width: 100%;
  height: 60px;
  content: "";
  border-radius: 50%;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}
#custom-html-7z .burger-menu {
  position: absolute;
  top: 35px;
  right: 14px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 20px;
  height: 17px;
  cursor: pointer;
  transition: -webkit-transform 330ms ease-out;
  transition: transform 330ms ease-out;
  transition: transform 330ms ease-out, -webkit-transform 330ms ease-out;
}
#custom-html-7z .burger-menu.menu-open {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#custom-html-7z .line-menu {
  width: 100%;
  height: 3px;
  background-color: #111;
  border-radius: 2px;
}
#custom-html-7z .line-menu.line-half {
  width: 50%;
}
#custom-html-7z .line-menu.first-line {
  -webkit-transform-origin: right;
  transform-origin: right;
  transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57), -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}
#custom-html-7z .line-menu.last-line {
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-transform-origin: left;
  transform-origin: left;
  transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57), -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}
#custom-html-7z .menu-open .line-menu.first-line {
  -webkit-transform: rotate(-90deg) translateX(3px);
  transform: rotate(-90deg) translateX(3px);
}
#custom-html-7z .menu-open .line-menu.last-line {
  -webkit-transform: rotate(-90deg) translateX(-3px);
  transform: rotate(-90deg) translateX(-3px);
}
#custom-html-7z .navik-header.header-dark {
  background-color: #111;
}
#custom-html-7z .navik-header.header-dark .line-menu,
#custom-html-7z .navik-header.header-dark .dropdown-plus::before,
#custom-html-7z .navik-header.header-dark .dropdown-plus::after {
  background-color: #fff;
}
#custom-html-7z .header-dark .navik-menu ul li > a {
  color: #fff;
}
#custom-html-7z .header-dark .navik-menu ul li.current-menu > a,
#custom-html-7z .header-dark .navik-menu ul li:hover > a {
  color: #c69c00;
  background-color: #313131;
}
#custom-html-7z .header-dark .navik-menu ul ul li > a {
  color: #c1c1c1;
  background-color: #212121;
}
#custom-html-7z .navik-menu .mega-menu-container {
  padding: 15px 30px 0;
}
#custom-html-7z .navik-menu .mega-menu-container ul li {
  position: relative;
}
#custom-html-7z .navik-menu .mega-menu-container ul li a {
  padding: inherit;
  font-style: inherit;
  color: inherit;
  background-color: inherit;
}
#custom-html-7z .navik-menu .mega-menu-container ul li:hover a {
  background-color: inherit;
}
#custom-html-7z .navik-menu .mega-menu-container li > ul {
  display: block;
}
#custom-html-7z .navik-menu .mega-menu > ul .dropdown-plus {
  display: none;
}
#custom-html-7z .navik-menu .mega-menu-box {
  margin-bottom: 30px;
}
#custom-html-7z .navik-menu .mega-menu-heading {
  margin-bottom: 12px;
  font-family: "Fira Sans", sans-serif;
  font-size: 15px;
  color: #212121;
  text-transform: uppercase;
}
#custom-html-7z .navik-menu .mega-menu-heading a {
  color: #212121;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
#custom-html-7z .navik-menu .mega-menu-heading a:hover {
  color: #26c6da;
}
#custom-html-7z .navik-menu .mega-menu-desc {
  font-family: "Fira Sans", sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.428572;
  color: #818181;
}
#custom-html-7z .navik-menu ul.mega-menu-list li a {
  padding: 5px 0;
  font-size: 14px;
  font-style: italic;
  color: #818181;
}
#custom-html-7z .navik-menu ul.mega-menu-list li a:hover {
  color: #26c6da;
}
#custom-html-7z .navik-menu ul.mega-menu-list ul {
  padding-left: 15px !important;
}
#custom-html-7z .navik-menu .mega-menu-thumbnail {
  margin-bottom: 20px;
}
#custom-html-7z .navik-menu .mega-menu-thumbnail img {
  width: 100%;
  height: auto;
}
#custom-html-7z .navik-menu .mega-menu-thumbnail > a {
  position: relative;
  display: block;
}
#custom-html-7z .navik-menu .mega-menu-thumbnail > a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.2s ease-in-out;
}
#custom-html-7z .navik-menu .mega-menu-thumbnail:hover > a::before {
  background-color: rgba(0, 0, 0, 0.2);
}
#custom-html-7z .header-dark .navik-menu .mega-menu-container ul li a {
  background-color: inherit;
}
#custom-html-7z .header-dark .navik-menu .mega-menu-heading a {
  color: #fff;
}
#custom-html-7z .header-dark .navik-menu .mega-menu-heading a:hover {
  color: #26c6da;
}
#custom-html-7z .navik-menu .navik-menu-icon {
  margin-right: 5px;
  color: #a1a1a1;
}
#custom-html-7z .navik-menu ul li > a .navik-menu-icon,
#custom-html-7z .navik-menu .mega-menu-heading a .navik-menu-icon {
  transition: color 0.2s ease-in-out;
}
#custom-html-7z .navik-menu ul li.current-menu > a .navik-menu-icon,
#custom-html-7z .navik-menu ul li:hover > a .navik-menu-icon,
#custom-html-7z .navik-menu .mega-menu-heading a:hover .navik-menu-icon {
  color: #26c6da !important;
}
#custom-html-7z .header-dark .navik-menu .navik-menu-icon {
  color: #717171;
}
#custom-html-7z .navik-menu-overlay .navik-menu-icon {
  position: relative;
  margin-right: 10px;
}
#custom-html-7z .navik-menu-overlay > ul ul li a .navik-menu-icon {
  top: -1px;
  margin-right: 7px;
}
#custom-html-7z .menu-slide .navik-menu-overlay > ul ul li a .navik-menu-icon {
  margin-right: 5px;
}
#custom-html-7z .navik-menu-fixed .navik-menu-icon {
  margin-right: 5px;
}
@media (max-width: 767.98px) {
  #custom-html-7z .navik-header,
  #custom-html-7z .navik-header-overlay,
  #custom-html-7z .body-fixed-sidebar {
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  #custom-html-7z .navik-header,
  #custom-html-7z .navik-header-overlay,
  #custom-html-7z .body-fixed-sidebar {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #custom-html-7z {
    /********** Default menu **********/
    /********** Mega menu **********/
    /********** Menu icons **********/
  }
  #custom-html-7z .navik-header .logo {
    float: left;
    padding: 30px 40px 30px 0;
  }
  #custom-html-7z .navik-menu {
    clear: both;
  }
  #custom-html-7z .header-shadow-wrapper::after {
    box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.1);
  }
  #custom-html-7z .navik-menu .mega-menu-media {
    display: table;
    width: 100%;
  }
  #custom-html-7z .navik-menu .mega-menu-media-img {
    display: table-cell;
    width: 120px;
    vertical-align: top;
  }
  #custom-html-7z .navik-menu .mega-menu-media-img .mega-menu-thumbnail {
    margin-bottom: 0;
  }
  #custom-html-7z .navik-menu .mega-menu-media-img img {
    width: 100%;
    height: auto;
  }
  #custom-html-7z .navik-menu .mega-menu-media-info {
    display: table-cell;
    padding-left: 20px;
    vertical-align: top;
  }
  #custom-html-7z .navik-menu-overlay .navik-menu-icon {
    margin-right: 12px;
  }
  #custom-html-7z .navik-menu-overlay > ul ul li a .navik-menu-icon {
    margin-right: 8px;
  }
  #custom-html-7z .menu-slide .navik-menu-overlay .navik-menu-icon {
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  #custom-html-7z {
    /********** Default menu **********/
    /********** Header sticky **********/
    /********** Header transparent **********/
    /********** Hover transitions **********/
    /********** Submenu **********/
    /********** Submenu transitions **********/
    /********** Mega menu **********/
  }
  #custom-html-7z .navik-header-container {
    height: 90px;
  }
  #custom-html-7z .navik-header .logo {
    position: relative;
    top: 50%;
    padding: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #custom-html-7z .navik-header .logo img {
    width: auto;
    max-width: inherit;
    max-height: 90px;
  }
  #custom-html-7z .burger-menu {
    display: none;
  }
  #custom-html-7z .navik-menu {
    float: right;
    clear: inherit;
  }
  #custom-html-7z .navik-menu > ul {
    display: block !important;
    padding: 0;
    font-size: 0;
  }
  #custom-html-7z .navik-menu > ul > li {
    display: inline-block;
  }
  #custom-html-7z .navik-menu > ul > li > a {
    position: relative;
    box-sizing: border-box;
    height: 90px;
    padding: 0 20px;
    line-height: 90px;
    white-space: nowrap;
  }
  #custom-html-7z .navik-menu > ul > li:last-child > a {
    padding: 0 0 0 20px;
  }
  #custom-html-7z .navik-menu ul li {
    position: relative;
  }
  #custom-html-7z .navik-menu ul li.dropdown_menu > a > span {
    display: none;
  }
  #custom-html-7z .navik-menu ul li.dropdown_menu > a > span::before {
    position: relative;
    top: -3px;
    box-sizing: content-box;
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-left: 8px;
    content: "";
    border-color: #c1c1c1;
    border-style: solid;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #custom-html-7z .navik-menu ul ul li.dropdown_menu > a > span::before {
    top: 7px;
    right: -10px;
    float: right;
    margin: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #custom-html-7z .navik-menu ul ul li > a {
    position: relative;
    padding: 9px 35px 7px !important;
    color: #818181;
    background-color: transparent;
  }
  #custom-html-7z .navik-menu ul ul li > a::before {
    position: absolute;
    top: 17px;
    left: 35px;
    width: 0;
    height: 1px;
    content: "";
    background: #a1a1a1;
    transition: all 0.2s ease-in-out;
  }
  #custom-html-7z .navik-menu ul ul li:hover > a {
    padding-left: 55px !important;
    color: #818181;
    background-color: transparent;
  }
  #custom-html-7z .navik-menu ul ul li:hover > a::before {
    width: 10px;
  }
  #custom-html-7z .navik-menu li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: block !important;
    width: 250px;
    padding: 27px 0;
    visibility: hidden;
    background-color: #fff;
    box-shadow: 0 12px 30px -2px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }
  #custom-html-7z .navik-menu li > ul ul {
    top: -27px;
    left: 100%;
  }
  #custom-html-7z .navik-menu li:hover > ul {
    visibility: visible;
    opacity: 1;
  }
  #custom-html-7z .navik-menu li.submenu-right > ul {
    right: 0;
    left: inherit;
  }
  #custom-html-7z .navik-menu li.submenu-right > ul ul {
    left: -100% !important;
  }
  #custom-html-7z .navik-menu.menu-caret ul li.dropdown_menu > a > span {
    display: inline-block;
  }
  #custom-html-7z .navik-menu.menu-caret ul ul li.dropdown_menu > a > span {
    display: inline;
  }
  #custom-html-7z .navik-menu.separate-line > ul > li > a {
    position: relative;
    padding: 0 28px;
  }
  #custom-html-7z .navik-menu.separate-line > ul > li > a::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 20px;
    content: "";
    background-color: #eee;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #custom-html-7z .navik-menu.separate-line > ul > li:last-child > a {
    padding: 0 0 0 28px;
  }
  #custom-html-7z .navik-menu.separate-line > ul > li:last-child > a::before {
    display: none;
  }
  #custom-html-7z .header-dark .navik-menu ul li.dropdown_menu > a > span::before {
    border-color: #a1a1a1;
  }
  #custom-html-7z .header-dark .navik-menu ul ul li > a {
    color: #a1a1a1;
    background-color: transparent;
  }
  #custom-html-7z .header-dark .navik-menu ul ul li:hover > a {
    color: #fff;
    background-color: transparent;
  }
  #custom-html-7z .header-dark .navik-menu ul ul li:hover > a .navik-menu-icon {
    color: #fff !important;
  }
  #custom-html-7z .header-dark .navik-menu li > ul {
    background-color: #111;
  }
  #custom-html-7z .header-dark .navik-menu.separate-line > ul > li > a::before {
    background-color: #333;
  }
  #custom-html-7z .navik-menu.menu-hover-2 > ul > li:last-child > a,
  #custom-html-7z .navik-menu.menu-hover-3 > ul > li:last-child > a,
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li:last-child > a,
  #custom-html-7z .center-menu-1 .navik-menu > ul > li:last-child > a,
  #custom-html-7z .center-menu-2 .navik-menu > ul > li:last-child > a {
    padding: 0 20px;
  }
  #custom-html-7z .navik-menu.menu-hover-2.separate-line > ul > li:last-child > a,
  #custom-html-7z .navik-menu.menu-hover-3.separate-line > ul > li:last-child > a,
  #custom-html-7z .navik-menu.menu-hover-4.separate-line > ul > li:last-child > a,
  #custom-html-7z .center-menu-1 .navik-menu.separate-line > ul > li:last-child > a,
  #custom-html-7z .center-menu-2 .navik-menu.separate-line > ul > li:last-child > a {
    padding: 0 28px;
  }
  #custom-html-7z .navik-menu ul li.current-menu > a,
  #custom-html-7z .navik-menu ul li:hover > a,
  #custom-html-7z .header-dark .navik-menu ul li.current-menu > a,
  #custom-html-7z .header-dark .navik-menu ul li:hover > a {
    background-color: inherit;
  }
  #custom-html-7z .dropdown-plus {
    display: none;
  }
  #custom-html-7z .navik-header.sticky {
    position: fixed;
    width: 100%;
    -webkit-animation-name: stickyTransition;
    animation-name: stickyTransition;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  #custom-html-7z .navik-header.sticky .navik-header-container {
    height: 70px;
  }
  #custom-html-7z .navik-header.sticky .navik-menu > ul > li > a {
    height: 70px;
    line-height: 70px;
  }
  #custom-html-7z .navik-header.sticky .logo {
    padding: 0 40px 0 0;
  }
  #custom-html-7z .navik-header.sticky .logo img {
    max-height: 70px;
  }
  @-webkit-keyframes stickyTransition {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes stickyTransition {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  #custom-html-7z .navik-header.header-transparent-on,
  #custom-html-7z .navik-header.header-opacity-on {
    position: absolute;
    width: 100%;
    background-color: transparent;
  }
  #custom-html-7z .navik-header.header-opacity-on {
    background-color: rgba(0, 0, 0, 0.3);
  }
  #custom-html-7z .header-transparent-on .header-shadow-wrapper,
  #custom-html-7z .header-opacity-on .header-shadow-wrapper {
    display: none;
  }
  #custom-html-7z .header-transparent-on .navik-menu > ul > li > a,
  #custom-html-7z .header-opacity-on .navik-menu > ul > li > a {
    color: #f7f7f7;
  }
  #custom-html-7z .header-transparent-on .navik-menu > ul > li > a .navik-menu-icon,
  #custom-html-7z .header-opacity-on .navik-menu > ul > li > a .navik-menu-icon {
    color: rgba(255, 255, 255, 0.85);
  }
  #custom-html-7z .header-transparent-on .navik-menu > ul > li:hover > a,
  #custom-html-7z .header-transparent-on .navik-menu > ul > li.current-menu > a,
  #custom-html-7z .header-opacity-on .navik-menu > ul > li:hover > a,
  #custom-html-7z .header-opacity-on .navik-menu > ul > li.current-menu > a {
    color: #26c6da;
  }
  #custom-html-7z .header-transparent-on .navik-menu > ul > li.dropdown_menu > a > span::before,
  #custom-html-7z .header-opacity-on .navik-menu > ul > li.dropdown_menu > a > span::before {
    border-color: #f7f7f7;
  }
  #custom-html-7z .header-transparent-on.center-menu-2 .navik-menu {
    border-color: rgba(255, 255, 255, 0.25);
  }
  #custom-html-7z .header-transparent-on .navik-menu.separate-line > ul > li > a::before {
    background-color: rgba(255, 255, 255, 0.25);
  }
  #custom-html-7z .header-opacity-on.center-menu-2 .navik-menu {
    border-color: rgba(255, 255, 255, 0.2);
  }
  #custom-html-7z .header-opacity-on .navik-menu.separate-line > ul > li > a::before {
    background-color: rgba(255, 255, 255, 0.2);
  }
  #custom-html-7z .navik-menu.menu-hover-2 > ul > li.current-menu > a,
  #custom-html-7z .navik-menu.menu-hover-2 > ul > li:hover > a {
    color: #212121;
    background-color: #f8f8f8;
  }
  #custom-html-7z .navik-menu.menu-hover-2 > ul > li.current-menu > a::after,
  #custom-html-7z .navik-menu.menu-hover-2 > ul > li:hover > a::after {
    opacity: 1;
  }
  #custom-html-7z .navik-menu.menu-hover-2 > ul > li > a::after,
  #custom-html-7z .navik-menu.menu-hover-3 > ul > li > a::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 3px;
    content: "";
    background-color: #26c6da;
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }
  #custom-html-7z .navik-menu.menu-hover-3 > ul > li.current-menu > a,
  #custom-html-7z .navik-menu.menu-hover-3 > ul > li:hover > a {
    color: #212121;
  }
  #custom-html-7z .navik-menu.menu-hover-3 > ul > li.current-menu > a::after,
  #custom-html-7z .navik-menu.menu-hover-3 > ul > li:hover > a::after {
    width: 100%;
    opacity: 1;
  }
  #custom-html-7z .navik-menu.menu-hover-3 > ul > li > a::after {
    left: 50%;
    width: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li > a > .hover-transition {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li > a > .hover-transition::after {
    position: relative;
    top: 50%;
    left: 50%;
    display: block;
    width: calc(102%);
    height: 0;
    content: "";
    background-color: #26c6da;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li.current-menu > a,
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li:hover > a {
    color: #fff;
  }
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li.current-menu > a > .hover-transition::after,
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li:hover > a > .hover-transition::after {
    height: 100%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li.current-menu > a .navik-menu-icon,
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li:hover > a .navik-menu-icon {
    color: #fff !important;
  }
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li > ul {
    transition-delay: 0s;
  }
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li:hover > ul {
    transition-delay: 0.13s;
  }
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li.dropdown_menu.current-menu > a > span::before,
  #custom-html-7z .navik-menu.menu-hover-4 > ul > li.dropdown_menu:hover > a > span::before {
    border-color: #fff;
  }
  #custom-html-7z .header-dark .navik-menu.menu-hover-2 > ul > li.current-menu > a,
  #custom-html-7z .header-dark .navik-menu.menu-hover-2 > ul > li:hover > a {
    color: #fff;
    background-color: #222;
  }
  #custom-html-7z .header-dark .navik-menu.menu-hover-3 > ul > li.current-menu > a,
  #custom-html-7z .header-dark .navik-menu.menu-hover-3 > ul > li:hover > a {
    color: #fff;
  }
  #custom-html-7z .header-transparent-on .navik-menu.menu-hover-2 > ul > li.current-menu > a,
  #custom-html-7z .header-transparent-on .navik-menu.menu-hover-2 > ul > li:hover > a {
    color: #f7f7f7;
    background-color: rgba(255, 255, 255, 0.25);
  }
  #custom-html-7z .header-opacity-on .navik-menu.menu-hover-2 > ul > li.current-menu > a,
  #custom-html-7z .header-opacity-on .navik-menu.menu-hover-2 > ul > li:hover > a {
    color: #f7f7f7;
    background-color: rgba(255, 255, 255, 0.2);
  }
  #custom-html-7z .header-transparent-on .navik-menu.menu-hover-3 > ul > li.current-menu > a,
  #custom-html-7z .header-transparent-on .navik-menu.menu-hover-3 > ul > li:hover > a,
  #custom-html-7z .header-opacity-on .navik-menu.menu-hover-3 > ul > li.current-menu > a,
  #custom-html-7z .header-opacity-on .navik-menu.menu-hover-3 > ul > li:hover > a {
    color: #f7f7f7;
  }
  #custom-html-7z .header-transparent-on .navik-menu.menu-hover-2 > ul > li.current-menu > a .navik-menu-icon,
  #custom-html-7z .header-transparent-on .navik-menu.menu-hover-2 > ul > li:hover > a .navik-menu-icon,
  #custom-html-7z .header-transparent-on .navik-menu.menu-hover-3 > ul > li.current-menu > a .navik-menu-icon,
  #custom-html-7z .header-transparent-on .navik-menu.menu-hover-3 > ul > li:hover > a .navik-menu-icon,
  #custom-html-7z .header-opacity-on .navik-menu.menu-hover-2 > ul > li.current-menu > a .navik-menu-icon,
  #custom-html-7z .header-opacity-on .navik-menu.menu-hover-2 > ul > li:hover > a .navik-menu-icon,
  #custom-html-7z .header-opacity-on .navik-menu.menu-hover-3 > ul > li.current-menu > a .navik-menu-icon,
  #custom-html-7z .header-opacity-on .navik-menu.menu-hover-3 > ul > li:hover > a .navik-menu-icon {
    color: rgba(255, 255, 255, 0.85) !important;
  }
  #custom-html-7z .navik-menu.submenu-top-border li > ul {
    border-top: 3px solid #26c6da;
  }
  #custom-html-7z .navik-menu.submenu-top-border li > ul ul {
    top: -30px;
  }
  #custom-html-7z .navik-menu.submenu-top-border.submenu-list-border li > ul ul {
    top: -23px;
  }
  #custom-html-7z .navik-menu.submenu-list-border li > ul ul {
    top: -20px;
  }
  #custom-html-7z .navik-menu.submenu-list-border ul ul li > a {
    padding: 15px 35px 14px !important;
  }
  #custom-html-7z .navik-menu.submenu-list-border ul ul li:first-child > a {
    padding: 8px 35px 14px 35px !important;
  }
  #custom-html-7z .navik-menu.submenu-list-border ul ul li:last-child > a {
    padding: 15px 35px 8px 35px !important;
  }
  #custom-html-7z .navik-menu.submenu-list-border ul ul li:last-child::after {
    display: none;
  }
  #custom-html-7z .navik-menu.submenu-list-border ul ul li::after {
    position: absolute;
    right: 35px;
    bottom: 0;
    left: 35px;
    height: 1px;
    content: "";
    background-color: #eee;
  }
  #custom-html-7z .navik-menu.submenu-list-border ul ul li:hover > a {
    padding-left: 55px !important;
  }
  #custom-html-7z .navik-menu.submenu-list-border ul ul li:nth-child(n+2) > a::before {
    top: 24px;
  }
  #custom-html-7z .header-dark .navik-menu.submenu-list-border ul ul li::after {
    background-color: #333;
  }
  #custom-html-7z .navik-menu.submenu-flip li > ul {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 0.35s ease-in-out;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
  }
  #custom-html-7z .navik-menu.submenu-flip li:hover > ul {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  #custom-html-7z .navik-menu.submenu-flip ul {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 200px;
    perspective: 200px;
  }
  #custom-html-7z .navik-menu.submenu-flip ul li {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 200px;
    perspective: 200px;
  }
  #custom-html-7z .navik-menu.submenu-scale li > ul {
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: all 0.3s ease;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  #custom-html-7z .navik-menu.submenu-scale li.submenu-right ul {
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  #custom-html-7z .navik-menu.submenu-scale li:hover > ul {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  #custom-html-7z .navik-mega-menu.mega-menu-fullwidth .navik-header-container {
    position: inherit;
  }
  #custom-html-7z .navik-mega-menu.mega-menu-fullwidth,
  #custom-html-7z .navik-mega-menu .navik-header-container {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 200px;
    perspective: 200px;
  }
  #custom-html-7z .navik-menu .mega-menu-container {
    padding: 15px 15px 0;
  }
  #custom-html-7z .navik-menu .mega-menu-container ul.mega-menu-list li > a::before {
    top: 13px !important;
    left: 0;
    display: block;
  }
  #custom-html-7z .navik-menu.submenu-flip .mega-menu > ul {
    -webkit-perspective: inherit;
    perspective: inherit;
  }
  #custom-html-7z .navik-menu.submenu-flip .mega-menu-container li > ul {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  #custom-html-7z .navik-menu.submenu-scale .mega-menu-container li > ul {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  #custom-html-7z .navik-menu ul li.mega-menu {
    position: inherit;
    font-size: initial;
  }
  #custom-html-7z .navik-menu li.mega-menu > ul {
    width: 100%;
    padding: 25px 20px 15px;
  }
  #custom-html-7z .navik-menu li.mega-menu:hover .mega-menu-container li > ul {
    visibility: visible;
    opacity: 1;
  }
  #custom-html-7z .navik-menu li.mega-menu.submenu-right > ul ul {
    left: inherit !important;
  }
  #custom-html-7z .navik-mega-menu.mega-menu-fullwidth .navik-header-container,
  #custom-html-7z .navik-mega-menu .navik-menu.submenu-flip > ul,
  #custom-html-7z .navik-mega-menu .navik-menu.submenu-flip ul li.mega-menu {
    -webkit-transform-style: unset;
    transform-style: unset;
    -webkit-perspective: none;
    perspective: none;
  }
  #custom-html-7z .navik-menu.submenu-scale li.mega-menu ul,
  #custom-html-7z .navik-menu.submenu-scale li.mega-menu.submenu-right ul {
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
  }
  #custom-html-7z .navik-menu .mega-menu-container li ul,
  #custom-html-7z .navik-menu.submenu-top-border .mega-menu-container li ul,
  #custom-html-7z .navik-menu.submenu-list-border .mega-menu-container li ul {
    position: relative;
    top: 0 !important;
    left: inherit;
    width: 100%;
    padding: 0;
    border-top: none;
    box-shadow: inherit;
  }
  #custom-html-7z .navik-menu .mega-menu-container ul li > a::before,
  #custom-html-7z .navik-menu.submenu-list-border .mega-menu-container ul li::after,
  #custom-html-7z .navik-menu.menu-caret .mega-menu-container li.dropdown_menu > a > span {
    display: none;
  }
  #custom-html-7z .navik-menu .mega-menu-container ul li a,
  #custom-html-7z .navik-menu .mega-menu-container ul li:hover a,
  #custom-html-7z .navik-menu.submenu-list-border .mega-menu-container ul li a,
  #custom-html-7z .navik-menu.submenu-list-border .mega-menu-container ul li:hover a,
  #custom-html-7z .navik-menu.submenu-list-border .mega-menu-container ul li:first-child a,
  #custom-html-7z .navik-menu.submenu-list-border .mega-menu-container ul li:first-child:hover a,
  #custom-html-7z .navik-menu.submenu-list-border .mega-menu-container ul li:last-child a,
  #custom-html-7z .navik-menu.submenu-list-border .mega-menu-container ul li:last-child:hover a {
    padding: inherit !important;
  }
  #custom-html-7z .navik-menu .mega-menu-container ul.mega-menu-list li a,
  #custom-html-7z .navik-menu .mega-menu-container ul.mega-menu-list li:hover a,
  #custom-html-7z .navik-menu.submenu-list-border .mega-menu-container ul.mega-menu-list li a,
  #custom-html-7z .navik-menu.submenu-list-border .mega-menu-container ul.mega-menu-list li:hover a {
    padding: 5px 0 !important;
    color: #818181;
  }
  #custom-html-7z .navik-menu .mega-menu-container ul.mega-menu-list li a:hover,
  #custom-html-7z .navik-menu.submenu-list-border .mega-menu-container ul.mega-menu-list li a:hover {
    padding-left: 20px !important;
  }
  #custom-html-7z .header-dark .navik-menu .mega-menu-container ul.mega-menu-list li a {
    color: #a1a1a1;
  }
  #custom-html-7z .header-dark .navik-menu .mega-menu-container ul.mega-menu-list li a:hover {
    color: #fff;
  }
}
#custom-html-7z .navik-header-container::after {
  display: block;
  content: "";
  clear: both;
}
#custom-html-7z .navik-menu {
  display: none;
}
#custom-html-7z .navik-menu > ul {
  display: block;
}
#custom-html-7z .center-menu-1.viewport-sm .navik-menu > ul {
  width: 100% !important;
}
@media (min-width: 1200px) {
  #custom-html-7z .navik-header-container {
    min-height: 90px;
    height: auto;
  }
  #custom-html-7z .navik-header.sticky .navik-header-container {
    min-height: 70px;
    height: auto;
  }
  #custom-html-7z .navik-header .logo {
    top: 30px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  #custom-html-7z .navik-header.sticky .logo {
    top: 20px;
  }
  #custom-html-7z .navik-menu {
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.cid-tmejwVJt4k {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tmejwVJt4k .container-fluid {
  padding: 0 3rem;
}
.cid-tmejwVJt4k .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #c69c00;
}
.cid-tmejwVJt4k .mbr-list li {
  margin-bottom: 1rem;
}
.cid-tmejwVJt4k .mbr-section-title {
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-tmejwVJt4k .social-media {
  margin-top: 1.5rem;
}
.cid-tmejwVJt4k .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-tmejwVJt4k .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-tmejwVJt4k .mbr-text,
.cid-tmejwVJt4k .mbr-offer {
  line-height: 1.5;
}
.cid-tmejwVJt4k .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: #A9A9A9;
}
@media (max-width: 767px) {
  .cid-tmejwVJt4k .container-fluid {
    padding: 0 1rem;
  }
  .cid-tmejwVJt4k .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-tmejwVJt4k .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-tmejwVJt4k .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-tmejwVJt4k .mbr-offer {
  color: #bbbbbb;
}
.cid-tmeiLErGLd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0a0a0a;
}
.cid-tmeiLErGLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmeiLErGLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmeiLErGLd .container {
  display: flex;
  justify-content: center;
}
.cid-tmeiLErGLd .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tmeiLErGLd .col-copyright {
  padding: 0;
}
.cid-tmeiLErGLd .copyright {
  color: #666666;
}
@media (max-width: 767px) {
  .cid-tmeiLErGLd .copyright {
    text-align: center;
  }
}
.cid-t3rRNorvnO .mbr-iconfont {
  display: block;
  font-size: 4rem;
}
.cid-t3rRNorvnO .card-wrapper {
  transition: all 0.3s;
  padding: 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t3rRNorvnO .card-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t3rRNorvnO .card-wrapper:hover .icon2,
.cid-t3rRNorvnO .card-wrapper:hover .icon3 {
  animation: icon;
  animation-duration: 0.3s;
}
.cid-t3rRNorvnO .text-wrapper {
  display: flex;
}
@keyframes icon {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.cid-t3rRNorvnO img {
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-t3rRNorvnO img:hover {
  transform: scale(1.05);
}
.cid-t3rRNorvnO .icon1 {
  color: #ffffff;
}
.cid-t3rRNorvnO .icon2 {
  color: #ffffff;
}
.cid-t3rRNorvnO .big {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}
.cid-t3rRNorvnO .card1 {
  background-image: url("../../../assets/images/craftsman-working-2000x2996.jpg");
  background-size: cover;
  background-position: center;
  padding: 6rem;
  padding-top: 15rem;
}
.cid-t3rRNorvnO .card1 .mbr-iconfont {
  font-size: 5rem;
}
@media (max-width: 1400px) {
  .cid-t3rRNorvnO .card1 {
    padding: 3rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-t3rRNorvnO .card1 {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-t3rRNorvnO .card1 {
    padding: 3rem 1rem;
  }
}
.cid-t3rRNorvnO .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cid-t3rRNorvnO .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #ffdc4d;
  font-size: 1.2rem;
}
.cid-t3rRNorvnO .card-box {
  z-index: 2;
}
.cid-t3rRNorvnO .card2 {
  background: #373f46;
}
.cid-t3rRNorvnO .card2-title {
  color: #ffffff;
}
.cid-t3rRNorvnO .card3-title {
  color: #ffffff;
}
.cid-t3rRNorvnO .card1-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t3rRNorvnO .card1-title {
    text-align: center;
  }
}
.cid-t3rRNorvnO .card1-text {
  color: #ffffff;
}
.cid-t3rRNorvnO .soc-link,
.cid-t3rRNorvnO .soc-wrapper {
  color: #ffffff;
}
.cid-t3rROvp08p {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
@media (min-width: 1400px) {
  .cid-t3rROvp08p .container {
    max-width: 1000px;
  }
}
.cid-t3rROvp08p .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.cid-t3rROvp08p .card-wrapper {
  margin-bottom: 2rem;
  border-top: 1px solid #efefef;
  padding-top: 2rem;
}
.cid-t3rROvp08p .row {
  justify-content: center;
}
.cid-t3rROvp08p .card-text {
  color: #353535;
}
.cid-t3rROvp08p .card-title,
.cid-t3rROvp08p .iconfont-wrapper {
  color: #272727;
}
.cid-t3rRU42LDy {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t3rRU42LDy .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-t3rRU42LDy .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-t3rRU42LDy .social {
  display: inline-flex;
  align-items: center;
}
.cid-t3rRU42LDy .social .socicon {
  padding-right: 0.6rem;
  color: #ffdc4d;
  font-size: 1.2rem;
}
.cid-t3rRU42LDy .soc-wrapper {
  width: 100%;
}
.cid-t3rRU42LDy .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t3rRU42LDy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-t3rRU42LDy .item {
    padding: 0 3rem;
  }
}
.cid-t3rRU42LDy img,
.cid-t3rRU42LDy .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t3rRU42LDy .item:focus,
.cid-t3rRU42LDy span:focus {
  outline: none;
}
.cid-t3rRU42LDy .mbr-section-title {
  color: #101112;
}
.cid-t3rRU42LDy .mbr-text,
.cid-t3rRU42LDy .mbr-section-btn {
  color: #353535;
}
.cid-t3rRU42LDy .mbr-section-subtitle {
  color: #353535;
}
.cid-t3rRV9yezw {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/tiffany-2-936x463.jpg");
}
.cid-t3rRV9yezw .mbr-overlay {
  background-color: #353535;
  opacity: 0.6;
}
.cid-t3rRV9yezw input,
.cid-t3rRV9yezw textarea {
  border-radius: 0;
}
.cid-t3rRV9yezw input:hover,
.cid-t3rRV9yezw textarea:hover {
  border: 1px solid transparent !important;
}
.cid-t3rRV9yezw textarea {
  min-height: 200px;
}
@media (max-width: 767px) {
  .cid-t3rRV9yezw .col-auto {
    margin: auto;
  }
}
.cid-t3rRV9yezw .mbr-main-subtitle {
  background: #ffdc4d;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-t3rRV9yezw .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #ffdc4d;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-t3rRV9yezw .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-t3rRV9yezw .btn {
  padding: 1rem 3rem;
}
.cid-t3rRV9yezw .mbr-section-text {
  color: #ffffff;
}
.cid-t3rRV9yezw .mbr-section-title {
  color: #ffffff;
}
#custom-html-bd {
  /* Type valid CSS here */
}
#custom-html-bd div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bd p {
  font-size: 60px;
  color: #777;
}
#custom-html-be {
  /* Type valid CSS here */
}
#custom-html-be div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-be p {
  font-size: 60px;
  color: #777;
}
#custom-html-bf {
  /* Type valid CSS here */
}
#custom-html-bf div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bf p {
  font-size: 60px;
  color: #777;
}
#custom-html-bg {
  /* Type valid CSS here */
}
#custom-html-bg div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bg p {
  font-size: 60px;
  color: #777;
}
#custom-html-bh {
  /* Type valid CSS here */
}
#custom-html-bh div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bh p {
  font-size: 60px;
  color: #777;
}
.cid-tmOXjj7Azt {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #101112;
}
.cid-tmOXjj7Azt .container-fluid {
  padding: 0 3rem;
}
.cid-tmOXjj7Azt .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #c69c00;
}
.cid-tmOXjj7Azt .mbr-list li {
  margin-bottom: 1rem;
}
.cid-tmOXjj7Azt .mbr-section-title {
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-tmOXjj7Azt .social-media {
  margin-top: 1.5rem;
}
.cid-tmOXjj7Azt .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-tmOXjj7Azt .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-tmOXjj7Azt .mbr-text,
.cid-tmOXjj7Azt .mbr-offer {
  line-height: 1.5;
}
.cid-tmOXjj7Azt .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: #A9A9A9;
}
@media (max-width: 767px) {
  .cid-tmOXjj7Azt .container-fluid {
    padding: 0 1rem;
  }
  .cid-tmOXjj7Azt .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-tmOXjj7Azt .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-tmOXjj7Azt .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-tmOXjj7Azt .mbr-offer {
  color: #bbbbbb;
}
.cid-tmOXjjyXNY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0a0a0a;
}
.cid-tmOXjjyXNY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmOXjjyXNY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmOXjjyXNY .container {
  display: flex;
  justify-content: center;
}
.cid-tmOXjjyXNY .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tmOXjjyXNY .col-copyright {
  padding: 0;
}
.cid-tmOXjjyXNY .copyright {
  color: #666666;
}
@media (max-width: 767px) {
  .cid-tmOXjjyXNY .copyright {
    text-align: center;
  }
}
.cid-uAUrmA1G6z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAUrmA1G6z .side-section .col-img {
  flex: 0 0 80px;
}
.cid-uAUrmA1G6z .side-section .col-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.cid-uAUrmA1G6z .carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-uAUrmA1G6z .carousel .carousel-container {
  position: relative;
}
.cid-uAUrmA1G6z .carousel .carousel-container .carousel-inner {
  border-radius: 20px;
}
.cid-uAUrmA1G6z .carousel .carousel-container .carousel-indicators {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 0;
  margin: 0;
  display: flex;
}
.cid-uAUrmA1G6z .carousel .carousel-container .carousel-indicators button {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin: 0 8px;
  padding: 0;
  border-radius: 50%;
  background-color: #ffe893;
  opacity: 1;
  transition: 0.4s ease;
}
.cid-uAUrmA1G6z .carousel .carousel-container .carousel-indicators .active {
  background-clip: padding-box;
  background-color: #c69c00;
}
.cid-uAUrmA1G6z .carousel .buttons-container {
  width: 80px;
  display: flex;
  justify-content: space-between;
}
.cid-uAUrmA1G6z .carousel .buttons-container button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.cid-uAUrmA1G6z .carousel .buttons-container button span {
  line-height: 2px;
  color: white;
}
.cid-uAUrmA1G6z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAUrmA1G6z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAUkGuNzIf {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #e9e9e9;
  display: flex;
  align-items: center;
}
.cid-uAUkGuNzIf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAUkGuNzIf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAUkGuNzIf .row {
  justify-content: flex-start;
}
.cid-uAUkGuNzIf .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
  text-align: left;
}
.cid-uAUkGuNzIf .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: left;
}
.cid-uCwj1rFnuh .mbr-section-btn.main-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.cid-uCwj1rFnuh .mbr-section-btn.main-btn .btn {
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}
.cid-uCwj1rFnuh .mbr-section-title {
  text-align: center;
  color: #c69c00;
}
.cid-uCwj1rFnuh .mbr-text {
  text-align: center;
}
.cid-uCwCev63IG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uCwCev63IG .row {
  flex-direction: row-reverse;
}
.cid-uCwCev63IG .container-fluid {
  padding: 0;
}
.cid-uCwCev63IG .row {
  align-items: stretch;
  width: 100%;
}
.cid-uCwCev63IG .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-uCwCev63IG .col-text {
    width: 50%;
  }
}
.cid-uCwCev63IG .text-container {
  padding: 30% 4% 33% 8%;
}
@media (min-width: 768px) {
  .cid-uCwCev63IG .text-container {
    padding: 18% 35% 20% 7%;
  }
}
@media (min-width: 881px) {
  .cid-uCwCev63IG .text-container {
    padding: 14% 35% 15.3% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-uCwCev63IG .text-container {
    padding: 15% 15% 17% 20%;
    padding: 15% 20% 17% 15%;
  }
}
@media (min-width: 1441px) {
  .cid-uCwCev63IG .text-container {
    padding: 15.3% 35% 17.3% 20%;
    padding: 15.3% 20% 17.3% 35%;
  }
}
.cid-uCwCev63IG .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-uCwCev63IG .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-uCwCev63IG .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-uCwCev63IG .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-uCwCev63IG .btn-container {
  width: 100%;
}
.cid-uCwCev63IG .mbr-section-btn {
  margin-top: 20px;
}
.cid-uCwCev63IG .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-uCwCev63IG .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-uCwCev63IG .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-uCwCev63IG .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-uCwCev63IG .img-container img {
  max-width: 100%;
  max-height: 90%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uCwCev63IG .mbr-section-title,
.cid-uCwCev63IG .mbr-section-btn {
  text-align: left;
}
.cid-uCwCk58Jsk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uCwCk58Jsk .container-fluid {
  padding: 0;
}
.cid-uCwCk58Jsk .row {
  align-items: stretch;
  width: 100%;
}
.cid-uCwCk58Jsk .col-text {
  width: 100%;
}
@media (min-width: 1025px) {
  .cid-uCwCk58Jsk .col-text {
    width: 50%;
  }
}
.cid-uCwCk58Jsk .text-container {
  padding: 30% 4% 33% 8%;
}
@media (min-width: 768px) {
  .cid-uCwCk58Jsk .text-container {
    padding: 18% 35% 20% 7%;
  }
}
@media (min-width: 881px) {
  .cid-uCwCk58Jsk .text-container {
    padding: 14% 35% 15.3% 12%;
  }
}
@media (min-width: 1025px) {
  .cid-uCwCk58Jsk .text-container {
    padding: 15% 15% 17% 20%;
  }
}
@media (min-width: 1441px) {
  .cid-uCwCk58Jsk .text-container {
    padding: 15.3% 35% 17.3% 20%;
  }
}
.cid-uCwCk58Jsk .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.cid-uCwCk58Jsk .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #8A8A8A;
}
.cid-uCwCk58Jsk .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 10px;
}
.cid-uCwCk58Jsk .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-uCwCk58Jsk .btn-container {
  width: 100%;
}
.cid-uCwCk58Jsk .mbr-section-btn {
  margin-top: 20px;
}
.cid-uCwCk58Jsk .col-img {
  width: 100%;
  position: relative;
}
@media (min-width: 1025px) {
  .cid-uCwCk58Jsk .col-img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .cid-uCwCk58Jsk .col-img {
    height: 1px;
    padding: 30% 0 30% 0;
  }
}
.cid-uCwCk58Jsk .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cid-uCwCk58Jsk .img-container img {
  max-width: 100%;
  max-height: 90%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uCwCk58Jsk .mbr-section-title,
.cid-uCwCk58Jsk .mbr-section-btn {
  text-align: left;
}
.cid-uAUjeDzVYc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-uAUjeDzVYc .mbr-overlay {
  z-index: 1;
}
.cid-uAUjeDzVYc .main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  padding: 130px 32px;
  position: relative;
  z-index: 2;
}
.cid-uAUjeDzVYc .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uAUjeDzVYc .content {
    max-width: 975px;
  }
}
.cid-uAUjeDzVYc .text-with-round,
.cid-uAUjeDzVYc .mbr-section-title {
  width: 100%;
}
.cid-uAUjeDzVYc .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uAUjeDzVYc .mbr-form-container {
  width: 100%;
  margin-top: 12px;
}
.cid-uAUjeDzVYc .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-top: 25px;
}
.cid-uAUjeDzVYc .form-name-email-container {
  display: flex;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uAUjeDzVYc .form-name-email-container {
    flex-wrap: wrap;
  }
}
.cid-uAUjeDzVYc .form-name {
  padding-right: 15px;
}
@media (max-width: 991px) {
  .cid-uAUjeDzVYc .form-name {
    width: 100%;
    padding: 0;
  }
}
.cid-uAUjeDzVYc .form-email {
  padding-left: 15px;
}
@media (max-width: 991px) {
  .cid-uAUjeDzVYc .form-email {
    width: 100%;
    padding: 0;
  }
}
.cid-uAUjeDzVYc .form-message-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  padding: 0;
}
.cid-uAUjeDzVYc form .row {
  margin: 0;
  border: none !important;
}
.cid-uAUjeDzVYc form .form-group {
  flex-grow: 1;
  margin-bottom: 24px !important;
}
@media (max-width: 991px) {
  .cid-uAUjeDzVYc form .form-group {
    width: 100%;
  }
}
.cid-uAUjeDzVYc form .form-group input,
.cid-uAUjeDzVYc form .form-group textarea {
  padding: 5px 4px 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-uAUjeDzVYc form .form-group input:hover,
.cid-uAUjeDzVYc form .form-group textarea:hover,
.cid-uAUjeDzVYc form .form-group input :focus,
.cid-uAUjeDzVYc form .form-group textarea :focus,
.cid-uAUjeDzVYc form .form-group input :active,
.cid-uAUjeDzVYc form .form-group textarea :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-uAUjeDzVYc form .form-message {
  margin-bottom: 0 !important;
}
.cid-uAUjeDzVYc form .form-message textarea {
  min-height: 100px;
  resize: none;
}
.cid-uAUjeDzVYc form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-uAUjeDzVYc form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
}
.cid-uAUvJkMnic {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #e9e9e9;
}
.cid-uAUvJkMnic .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uAUvJkMnic .mbr-text,
.cid-uAUvJkMnic .mbr-section-btn {
  color: #000000;
}
.cid-uAUvJkMnic form {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uAUvJkMnic .form-control {
  margin-bottom: 1rem;
}
.cid-uAUvJkMnic H5 {
  color: #000000;
}
.cid-uAUwxDIqYO {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uAUwxDIqYO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uAUwxDIqYO .container-fluid {
    padding: 0 3rem;
  }
}
.cid-uAUwxDIqYO .row {
  align-items: center;
}
.cid-uAUwxDIqYO img {
  width: 100%;
  height: 100%;
}
.cid-uAUwxDIqYO .col-lg-3 {
  height: 300px;
}
.cid-uAUwxDIqYO .col-lg-2 {
  height: 400px;
}
.cid-uAUwxDIqYO .image-wrapper {
  width: 100%;
  height: 100%;
}
.cid-uAUwxDIqYO .image-wrapper img {
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAUwxDIqYO .col-12 {
    margin-bottom: 3rem;
  }
}
.cid-uAUxB3peRD {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uAUxB3peRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAUxB3peRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAUxB3peRD .mbr-iconfont {
  display: flex;
  font-size: 1rem;
  color: white;
  margin-bottom: 2rem;
  width: 30px;
  height: 30px;
  background: #000000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uAUxB3peRD .mbr-iconfont {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-uAUxB3peRD .card-wrapper {
  margin-top: 3rem;
}
.cid-uH2OSif7o1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e9e9e9;
}
@media (min-width: 1400px) {
  .cid-uH2OSif7o1 .container {
    max-width: 1000px;
  }
}
.cid-uH2OSif7o1 .item-img,
.cid-uH2OSif7o1 img {
  height: 100%;
  object-fit: cover;
}
.cid-uH2OSif7o1 .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #ffdc4d;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.cid-uH2OSif7o1 .card-wrapper {
  margin-bottom: 2rem;
}
.cid-uH2OSif7o1 .row {
  justify-content: center;
}
.cid-uH2OSif7o1 .card-text {
  color: #353535;
}
.cid-uH2OSif7o1 .card-title,
.cid-uH2OSif7o1 .iconfont-wrapper {
  color: #272727;
}
.cid-uAUzBwHn1e {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uAUzBwHn1e .google-map {
  height: 35rem;
  position: relative;
}
.cid-uAUzBwHn1e .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uAUzBwHn1e .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uAUzBwHn1e .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uAUzBwHn1e .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uAUAfX1XSf {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #e9e9e9;
  display: flex;
  align-items: center;
}
.cid-uAUAfX1XSf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAUAfX1XSf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAUAfX1XSf .row {
  justify-content: flex-start;
}
.cid-uAUAfX1XSf .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
  text-align: left;
}
.cid-uAUAfX1XSf .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: left;
}
.cid-uAUBRyYFYX {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAUBRyYFYX .image-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uAUBRyYFYX .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uAUBRyYFYX .image-wrapper {
    padding: 30px;
    padding-left: 3rem;
  }
}
.cid-uAUBRyYFYX .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-uAUBRyYFYX .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAUBRyYFYX .image-wrapper .img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 32px;
  max-width: 100%;
  max-height: 100%;
  background-color: #ffffff;
}
.cid-uAUBRyYFYX .image-wrapper .img-caption .img-label-text {
  color: #F0C48A;
}
.cid-uAUBRyYFYX .image-wrapper .img-caption .img-text {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-uAUBRyYFYX .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uAUBRyYFYX .col-text {
    padding: 30px;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uAUBRyYFYX .col-text {
    text-align: center;
  }
}
.cid-uAUBRyYFYX .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uAUBRyYFYX .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-uAUBRyYFYX .label-text {
    text-align: center !important;
  }
}
.cid-uAUBRyYFYX .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-uAUBRyYFYX .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-uAUBRyYFYX .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .cid-uAUBRyYFYX .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uAUBRyYFYX .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uAUBRyYFYX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAUBRyYFYX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAUBRyYFYX .mbr-section-title,
.cid-uAUBRyYFYX .mbr-section-btn {
  text-align: left;
}
.cid-uAUBJdXJ15 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uAUBJdXJ15 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uAUBJdXJ15 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uAUBJdXJ15 .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-uAUBJdXJ15 .mbr-section-title {
  text-align: left;
}
.cid-uAUBTvbjGv {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAUBTvbjGv .image-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uAUBTvbjGv .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uAUBTvbjGv .image-wrapper {
    padding: 30px;
    padding-left: 3rem;
  }
}
.cid-uAUBTvbjGv .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-uAUBTvbjGv .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAUBTvbjGv .image-wrapper .img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 32px;
  max-width: 100%;
  max-height: 100%;
  background-color: #ffffff;
}
.cid-uAUBTvbjGv .image-wrapper .img-caption .img-label-text {
  color: #F0C48A;
}
.cid-uAUBTvbjGv .image-wrapper .img-caption .img-text {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-uAUBTvbjGv .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uAUBTvbjGv .col-text {
    padding: 30px;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uAUBTvbjGv .col-text {
    text-align: center;
  }
}
.cid-uAUBTvbjGv .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uAUBTvbjGv .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-uAUBTvbjGv .label-text {
    text-align: center !important;
  }
}
.cid-uAUBTvbjGv .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-uAUBTvbjGv .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-uAUBTvbjGv .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .cid-uAUBTvbjGv .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uAUBTvbjGv .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uAUBTvbjGv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAUBTvbjGv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAUBTvbjGv .mbr-section-title,
.cid-uAUBTvbjGv .mbr-section-btn {
  text-align: left;
}
.cid-uAUCg7yLD7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAUCg7yLD7 .row {
  flex-direction: row-reverse;
}
.cid-uAUCg7yLD7 .image-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uAUCg7yLD7 .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uAUCg7yLD7 .image-wrapper {
    padding: 30px;
    padding-right: 3rem;
  }
}
.cid-uAUCg7yLD7 .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-uAUCg7yLD7 .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAUCg7yLD7 .image-wrapper .img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 32px;
  max-width: 100%;
  max-height: 100%;
  background-color: #ffffff;
}
.cid-uAUCg7yLD7 .image-wrapper .img-caption .img-label-text {
  color: #F0C48A;
}
.cid-uAUCg7yLD7 .image-wrapper .img-caption .img-text {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-uAUCg7yLD7 .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uAUCg7yLD7 .col-text {
    padding: 30px;
    padding-left: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uAUCg7yLD7 .col-text {
    text-align: center;
  }
}
.cid-uAUCg7yLD7 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uAUCg7yLD7 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-uAUCg7yLD7 .label-text {
    text-align: center !important;
  }
}
.cid-uAUCg7yLD7 .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-uAUCg7yLD7 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-uAUCg7yLD7 .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .cid-uAUCg7yLD7 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uAUCg7yLD7 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uAUCg7yLD7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAUCg7yLD7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAUCg7yLD7 .mbr-section-title,
.cid-uAUCg7yLD7 .mbr-section-btn {
  text-align: left;
}
.cid-uAUG5B9ySH {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAUG5B9ySH .image-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uAUG5B9ySH .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uAUG5B9ySH .image-wrapper {
    padding: 30px;
    padding-left: 3rem;
  }
}
.cid-uAUG5B9ySH .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-uAUG5B9ySH .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAUG5B9ySH .image-wrapper .img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 32px;
  max-width: 100%;
  max-height: 100%;
  background-color: #ffffff;
}
.cid-uAUG5B9ySH .image-wrapper .img-caption .img-label-text {
  color: #F0C48A;
}
.cid-uAUG5B9ySH .image-wrapper .img-caption .img-text {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-uAUG5B9ySH .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uAUG5B9ySH .col-text {
    padding: 30px;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uAUG5B9ySH .col-text {
    text-align: center;
  }
}
.cid-uAUG5B9ySH .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uAUG5B9ySH .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-uAUG5B9ySH .label-text {
    text-align: center !important;
  }
}
.cid-uAUG5B9ySH .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-uAUG5B9ySH .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-uAUG5B9ySH .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .cid-uAUG5B9ySH .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uAUG5B9ySH .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uAUG5B9ySH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAUG5B9ySH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAUG5B9ySH .mbr-section-title,
.cid-uAUG5B9ySH .mbr-section-btn {
  text-align: left;
}
.cid-uAUG5YgX6u {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAUG5YgX6u .row {
  flex-direction: row-reverse;
}
.cid-uAUG5YgX6u .image-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uAUG5YgX6u .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uAUG5YgX6u .image-wrapper {
    padding: 30px;
    padding-right: 3rem;
  }
}
.cid-uAUG5YgX6u .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-uAUG5YgX6u .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAUG5YgX6u .image-wrapper .img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 32px;
  max-width: 100%;
  max-height: 100%;
  background-color: #ffffff;
}
.cid-uAUG5YgX6u .image-wrapper .img-caption .img-label-text {
  color: #F0C48A;
}
.cid-uAUG5YgX6u .image-wrapper .img-caption .img-text {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-uAUG5YgX6u .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-uAUG5YgX6u .col-text {
    padding: 30px;
    padding-left: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uAUG5YgX6u .col-text {
    text-align: center;
  }
}
.cid-uAUG5YgX6u .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uAUG5YgX6u .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-uAUG5YgX6u .label-text {
    text-align: center !important;
  }
}
.cid-uAUG5YgX6u .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-uAUG5YgX6u .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-uAUG5YgX6u .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .cid-uAUG5YgX6u .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uAUG5YgX6u .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uAUG5YgX6u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAUG5YgX6u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAUG5YgX6u .mbr-section-title,
.cid-uAUG5YgX6u .mbr-section-btn {
  text-align: left;
}
.cid-uAUAZcjEnG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e9e9e9;
  display: flex;
  align-items: center;
}
.cid-uAUAZcjEnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAUAZcjEnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAUAZcjEnG .row {
  justify-content: flex-start;
}
.cid-uAUAZcjEnG .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
  text-align: center;
}
.cid-uAUAZcjEnG .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: center;
}
.cid-uIQqN8EKeR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-uIQqN8EKeR .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uIQqN8EKeR .col-12 {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1000px) {
  .cid-uIQqN8EKeR .container-fluid {
    padding: 0 3rem;
  }
}
.cid-uIQqN8EKeR .row {
  align-items: center;
}
.cid-uIQqN8EKeR img {
  width: 100%;
  height: 100%;
}
.cid-uIQqN8EKeR .col-lg-3 {
  height: 300px;
  width: 330px;
}
.cid-uIQqN8EKeR .col-lg-2 {
  height: 330px;
  width: 300px;
}
.cid-uIQqN8EKeR .image-wrapper {
  width: 100%;
  height: 100%;
}
.cid-uIQqN8EKeR .image-wrapper img {
  object-fit: cover;
}
.cid-uAUAWQ40d9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e9e9e9;
}
.cid-uAUAWQ40d9 .mbr-overlay {
  z-index: 1;
}
.cid-uAUAWQ40d9 .main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  padding: 130px 32px;
  position: relative;
  z-index: 2;
}
.cid-uAUAWQ40d9 .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uAUAWQ40d9 .content {
    max-width: 975px;
  }
}
.cid-uAUAWQ40d9 .text-with-round,
.cid-uAUAWQ40d9 .mbr-section-title {
  width: 100%;
}
.cid-uAUAWQ40d9 .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uAUAWQ40d9 .mbr-form-container {
  width: 100%;
  margin-top: 12px;
}
.cid-uAUAWQ40d9 .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-top: 25px;
}
.cid-uAUAWQ40d9 .form-name-email-container {
  display: flex;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uAUAWQ40d9 .form-name-email-container {
    flex-wrap: wrap;
  }
}
.cid-uAUAWQ40d9 .form-name {
  padding-right: 15px;
}
@media (max-width: 991px) {
  .cid-uAUAWQ40d9 .form-name {
    width: 100%;
    padding: 0;
  }
}
.cid-uAUAWQ40d9 .form-email {
  padding-left: 15px;
}
@media (max-width: 991px) {
  .cid-uAUAWQ40d9 .form-email {
    width: 100%;
    padding: 0;
  }
}
.cid-uAUAWQ40d9 .form-message-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  padding: 0;
}
.cid-uAUAWQ40d9 form .row {
  margin: 0;
  border: none !important;
}
.cid-uAUAWQ40d9 form .form-group {
  flex-grow: 1;
  margin-bottom: 24px !important;
}
@media (max-width: 991px) {
  .cid-uAUAWQ40d9 form .form-group {
    width: 100%;
  }
}
.cid-uAUAWQ40d9 form .form-group input,
.cid-uAUAWQ40d9 form .form-group textarea {
  padding: 5px 4px 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-uAUAWQ40d9 form .form-group input:hover,
.cid-uAUAWQ40d9 form .form-group textarea:hover,
.cid-uAUAWQ40d9 form .form-group input :focus,
.cid-uAUAWQ40d9 form .form-group textarea :focus,
.cid-uAUAWQ40d9 form .form-group input :active,
.cid-uAUAWQ40d9 form .form-group textarea :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-uAUAWQ40d9 form .form-message {
  margin-bottom: 0 !important;
}
.cid-uAUAWQ40d9 form .form-message textarea {
  min-height: 100px;
  resize: none;
}
.cid-uAUAWQ40d9 form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-uAUAWQ40d9 form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
}
.cid-uB73slvGqG {
  background-color: #fafafa;
}
.cid-uB73slvGqG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uB73slvGqG .mbr-text,
.cid-uB73slvGqG .mbr-section-btn {
  color: #000000;
}
#custom-html-aq namespace Meyda public partial class upload {
  protectedglobal: :System.Web.UI.WebControls.Literal lbl_loginStatus;
  protectedglobal: :System.Web.UI.HtmlControls.HtmlForm form1;
  protectedglobal: :System.Web.UI.WebControls.FileUpload FileUpload1;
  protectedglobal: :System.Web.UI.WebControls.Button btnSendMessage;
  protectedglobal: :System.Web.UI.WebControls.Label lblMessage;
}
.cid-uC9vpJ5E54 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uC9vpJ5E54 a.btn > span {
  margin-left: 0.5rem;
}
.cid-uC9vpJ5E54 .row {
  align-items: center;
  justify-content: space-between;
}
.cid-uC9vpJ5E54 .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-uC9vpJ5E54 .mbr-section-subtitle {
  color: #14142b;
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
}
.cid-uC9vpJ5E54 .mbr-text {
  color: #5f5d68;
  margin-bottom: 56px;
}
.cid-uC9vpJ5E54 .right-side {
  max-width: 554px;
}
.cid-uC9vpJ5E54 .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-uC9vpJ5E54 .margin {
  margin-right: 14px;
}
.cid-uC9vpJ5E54 .shadow {
  padding: 62px 56px 64px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 690px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-uC9vpJ5E54 img {
  max-width: 186px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 17px;
}
.cid-uC9vpJ5E54 .card-title {
  margin-bottom: 4px;
  color: #14142b;
}
.cid-uC9vpJ5E54 .card-subtitle {
  margin-bottom: 21px;
  color: #8c8c95;
}
.cid-uC9vpJ5E54 .card-text {
  margin-bottom: 40px;
  color: #8c8c95;
}
.cid-uC9vpJ5E54 .mbr-social-likes.big .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 37px;
  height: 37px;
  line-height: 44px;
  margin: 0 10px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #ffdc4d;
  cursor: pointer;
}
.cid-uC9vpJ5E54 .mbr-social-likes.big .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-uC9vpJ5E54 .mbr-social-likes.big .btn-social:hover {
  color: #fff;
}
.cid-uC9vpJ5E54 .mbr-social-likes.big .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-uC9vpJ5E54 .r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.cid-uC9vpJ5E54 .mbr-social-likes.small {
  display: flex;
}
.cid-uC9vpJ5E54 .mbr-social-likes.big {
  display: block;
}
.cid-uC9vpJ5E54 .mbr-social-likes.small .btn-social {
  font-size: 14px;
  border-radius: 50%;
  width: 30px;
  height: 30px !important;
  line-height: 30px;
  margin: 0 0px 0 10px !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #ffdc4d;
  cursor: pointer;
}
.cid-uC9vpJ5E54 .mbr-social-likes.small .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-uC9vpJ5E54 .mbr-social-likes.small .btn-social:hover {
  color: #fff;
}
.cid-uC9vpJ5E54 .mbr-social-likes.small .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-uC9vpJ5E54 .form-control,
.cid-uC9vpJ5E54 form .btn {
  min-height: initial;
}
.cid-uC9vpJ5E54 a.btn,
.cid-uC9vpJ5E54 button {
  padding: 24px 40px;
  border-radius: 80px;
}
.cid-uC9vpJ5E54 input {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 64px;
  margin-bottom: 40px;
  padding: 8px 26px;
}
.cid-uC9vpJ5E54 textarea {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 14px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 132px;
  margin-bottom: 40px;
  padding: 20px 26px;
}
.cid-uC9vpJ5E54 input:hover {
  border-color: #14142b !important;
}
.cid-uC9vpJ5E54 textarea:hover {
  border-color: #14142b !important;
}
.cid-uC9vpJ5E54 input:focus {
  border-color: #14142b !important;
}
.cid-uC9vpJ5E54 textarea:focus {
  border-color: #14142b !important;
}
.cid-uC9vpJ5E54 .form-group {
  margin-bottom: 0;
}
.cid-uC9vpJ5E54 .listen {
  margin-bottom: 24px;
}
.cid-uC9vpJ5E54 .phone {
  margin-bottom: 44px;
}
.cid-uC9vpJ5E54 .email {
  margin-bottom: 21px;
}
.cid-uC9vpJ5E54 .listen,
.cid-uC9vpJ5E54 .big {
  text-align: left;
  color: #8c8c95;
}
.cid-uC9vpJ5E54 .mbr-text,
.cid-uC9vpJ5E54 .button-align {
  color: #353535;
}
.cid-uC9vpJ5E54 .email span {
  padding: 7px;
  background-color: #14142b;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 50%;
}
.cid-uC9vpJ5E54 .phone span {
  padding: 7px;
  background-color: #14142b;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 50%;
}
.cid-uC9vpJ5E54 select.form-control:hover {
  border-color: #14142b;
}
.cid-uC9vpJ5E54 select.form-control {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  color: #8c8c95;
  transition: border-color 300ms ease;
  min-height: 64px;
  padding-right: 26px;
  padding-left: 26px;
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  display: flex;
}
.cid-uC9vpJ5E54 .form-check > input {
  height: 1em;
  width: 1em;
  padding: 0;
  float: initial;
  margin-bottom: 0;
}
@media (max-width: 770px) {
  .cid-uC9vpJ5E54 .shadow {
    width: 100%;
    margin-top: 60px;
    max-width: initial;
  }
  .cid-uC9vpJ5E54 .left-side,
  .cid-uC9vpJ5E54 .right-side {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 992px) {
  .cid-uC9vpJ5E54 .right-side {
    max-width: initial;
    margin-bottom: 50px;
  }
  .cid-uC9vpJ5E54 .shadow {
    margin: auto;
  }
}
@media (max-width: 600px) {
  .cid-uC9vpJ5E54 .shadow {
    padding: 25px;
  }
  .cid-uC9vpJ5E54 input {
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .cid-uC9vpJ5E54 .r {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .cid-uC9vpJ5E54 .mbr-social-likes.small {
    margin-top: 20px;
  }
}
.cid-uC9vpJ5E54 .big > .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-uC9vpJ5E54 .big > .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-uC9vpJ5E54 .big > .socicon-bg-twitter {
  background-color: #df8e00;
}
.cid-uC9vpJ5E54 .big > .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-uC9vpJ5E54 .big > .socicon-bg-mail {
  background-color: #134785;
}
.cid-uC9vpJ5E54 .small > .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-uC9vpJ5E54 .small > .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-uC9vpJ5E54 .small > .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-uC9vpJ5E54 .small > .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-uC9vpJ5E54 .small > .socicon-bg-mail {
  background-color: #134785;
}
.cid-uC9vpJ5E54 .mbr-iconfont {
  margin-right: 8px;
}
.cid-uC9vpJ5E54 .row {
  flex-direction: row-reverse;
}
#custom-html-aw {
  /* Google Form specific styles */
  /* Add more customizations if needed */
}
#custom-html-aw .google-form-container {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
}
#custom-html-aw .google-form-left-column {
  flex: 2;
  padding: 20px;
}
#custom-html-aw .google-form-right-column {
  flex: 1;
  background-color: #f4f4f4;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#custom-html-aw .google-form-iframe {
  width: 100%;
  height: 100vh;
  border: none;
}
#custom-html-aw .google-form-header-image {
  text-align: center;
  margin-bottom: 20px;
}
#custom-html-aw .google-form-header-image img {
  max-width: 100%;
  height: auto;
}
.cid-uGRjQ6sfA0 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (min-width: 1400px) {
  .cid-uGRjQ6sfA0 .container {
    max-width: 1000px;
  }
}
.cid-uGRjQ6sfA0 .item-img,
.cid-uGRjQ6sfA0 img {
  height: 100%;
  object-fit: cover;
}
.cid-uGRjQ6sfA0 .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #ffdc4d;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.cid-uGRjQ6sfA0 .card-wrapper {
  margin-bottom: 2rem;
}
.cid-uGRjQ6sfA0 .row {
  justify-content: center;
}
.cid-uGRjQ6sfA0 .card-text {
  color: #353535;
}
.cid-uGRjQ6sfA0 .card-title,
.cid-uGRjQ6sfA0 .iconfont-wrapper {
  color: #272727;
}
#custom-html-bk {
  /* Type valid CSS here */
}
#custom-html-bk div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bk p {
  font-size: 60px;
  color: #777;
}
#custom-html-bj {
  /* Type valid CSS here */
}
#custom-html-bj div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bj p {
  font-size: 60px;
  color: #777;
}
#custom-html-bi {
  /* Type valid CSS here */
}
#custom-html-bi div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bi p {
  font-size: 60px;
  color: #777;
}
#custom-html-bl {
  /* Type valid CSS here */
}
#custom-html-bl div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bl p {
  font-size: 60px;
  color: #777;
}
#custom-html-bm {
  /* Type valid CSS here */
}
#custom-html-bm div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bm p {
  font-size: 60px;
  color: #777;
}
#custom-html-bn {
  /* Type valid CSS here */
}
#custom-html-bn div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bn p {
  font-size: 60px;
  color: #777;
}
#custom-html-bo {
  /* Type valid CSS here */
}
#custom-html-bo div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-bo p {
  font-size: 60px;
  color: #777;
}
.cid-uIEH8PX5Hk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-uIEH8PX5Hk .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uIEH8PX5Hk .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uIEH8PX5Hk .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uIEH8PX5Hk .row {
    text-align: center;
  }
}
.cid-uIEH8PX5Hk li {
  padding-bottom: 5px;
}
.cid-uIEH8PX5Hk .row {
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.cid-uIEH8PX5Hk .soc-wrapper {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIEH8PX5Hk div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uIEH8PX5Hk .mbr-iconfont {
  padding-right: 6px;
}
.cid-uIEH8PX5Hk .copyright {
  color: #bbbbbb;
}
.cid-uIEH8PX5Hk .soc-link,
.cid-uIEH8PX5Hk .soc-wrapper {
  color: #ffffff;
}
