body {
  font-family: Gloock;
}
.display-1 {
  font-family: 'Gloock', serif;
  font-size: 5rem;
  line-height: 80px;
  letter-spacing: 0.99px;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Gloock', serif;
  font-size: 3rem;
  line-height: 60px;
  letter-spacing: 0.99px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Gloock', serif;
  font-size: 1.375rem;
  line-height: 60px;
  letter-spacing: 2.4px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.71875rem;
}
.display-5 {
  font-family: 'Gloock', serif;
  font-size: 1.875rem;
  line-height: 30px;
  letter-spacing: 0.99px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.34375rem;
}
.display-7 {
  font-family: 'Gloock', serif;
  font-size: 1.2rem;
  line-height: 35px;
  letter-spacing: normal;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #3b6e8f !important;
}
.bg-success {
  background-color: #e6c16d !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #e0ae8a !important;
}
.bg-danger {
  background-color: #985b30 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #3b6e8f !important;
  border-color: #3b6e8f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #223f52 !important;
  border-color: #223f52 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #223f52 !important;
  border-color: #223f52 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #263a5c !important;
  border-color: #263a5c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0d131f !important;
  border-color: #0d131f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d131f !important;
  border-color: #0d131f !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e6c16d !important;
  border-color: #e6c16d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #d7a125 !important;
  border-color: #d7a125 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #d7a125 !important;
  border-color: #d7a125 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e0ae8a !important;
  border-color: #e0ae8a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ce7f45 !important;
  border-color: #ce7f45 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ce7f45 !important;
  border-color: #ce7f45 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #985b30 !important;
  border-color: #985b30 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #56341b !important;
  border-color: #56341b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #56341b !important;
  border-color: #56341b !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3b6e8f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #223f52 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #3b6e8f !important;
  border-color: #3b6e8f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #263a5c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0d131f !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: #263a5c !important;
  border-color: #263a5c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c16d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d7a125 !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: #e6c16d !important;
  border-color: #e6c16d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e0ae8a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ce7f45 !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: #e0ae8a !important;
  border-color: #e0ae8a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #985b30;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #56341b !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: #985b30 !important;
  border-color: #985b30 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #3b6e8f !important;
}
.text-secondary {
  color: #263a5c !important;
}
.text-success {
  color: #e6c16d !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #e0ae8a !important;
}
.text-danger {
  color: #985b30 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1d3647 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #080c14 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ca9723 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #cb7639 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4a2d18 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #3b6e8f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #e0ae8a;
}
.alert-danger {
  background-color: #985b30;
}
.mbr-gallery-filter li.active .btn {
  background-color: #3b6e8f;
  border-color: #3b6e8f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #3b6e8f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7fadca;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d39c74;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Gloock', serif;
  font-size: 1.375rem;
  line-height: 60px;
  letter-spacing: 2.4px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.71875rem;
}
.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: #3b6e8f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Gloock', serif;
  font-size: 1.375rem;
  line-height: 60px;
  letter-spacing: 2.4px;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.71875rem;
}
blockquote {
  border-color: #3b6e8f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3b6e8f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #3b6e8f;
}
.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: #3b6e8f;
  border-bottom-color: #3b6e8f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #3b6e8f !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: #263a5c !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='%233b6e8f' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  padding: 0 60px;
  box-shadow: none;
}
@media (max-width: 768px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 15px 30px;
  }
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  font-size: 14px;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #3b6e8f;
  border-radius: 0;
}
.mbr-section-btn .btn-primary-outline .mbr-iconfont,
.mbr-section-btn-main .btn-primary-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn-main .btn-primary-outline:focus {
  border-bottom: 2px solid #3b6e8f !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #263a5c;
  border-radius: 0;
}
.mbr-section-btn .btn-secondary-outline .mbr-iconfont,
.mbr-section-btn-main .btn-secondary-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn-main .btn-secondary-outline:focus {
  border-bottom: 2px solid #263a5c !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #e6c16d;
  border-radius: 0;
}
.mbr-section-btn .btn-success-outline .mbr-iconfont,
.mbr-section-btn-main .btn-success-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn-main .btn-success-outline:focus {
  border-bottom: 2px solid #e6c16d !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #ffffff;
  border-radius: 0;
}
.mbr-section-btn .btn-info-outline .mbr-iconfont,
.mbr-section-btn-main .btn-info-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn-main .btn-info-outline:focus {
  border-bottom: 2px solid #ffffff !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #985b30;
  border-radius: 0;
}
.mbr-section-btn .btn-danger-outline .mbr-iconfont,
.mbr-section-btn-main .btn-danger-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn-main .btn-danger-outline:focus {
  border-bottom: 2px solid #985b30 !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #e0ae8a;
  border-radius: 0;
}
.mbr-section-btn .btn-warning-outline .mbr-iconfont,
.mbr-section-btn-main .btn-warning-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn-main .btn-warning-outline:focus {
  border-bottom: 2px solid #e0ae8a !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #000000;
  border-radius: 0;
}
.mbr-section-btn .btn-black-outline .mbr-iconfont,
.mbr-section-btn-main .btn-black-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn-main .btn-black-outline:focus {
  border-bottom: 2px solid #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  padding: 0;
  line-height: 30px;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #ffffff;
  border-radius: 0;
}
.mbr-section-btn .btn-white-outline .mbr-iconfont,
.mbr-section-btn-main .btn-white-outline .mbr-iconfont {
  font-size: 14px;
  font-weight: 700;
  margin-left: 0;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn-main .btn-white-outline:focus {
  border-bottom: 2px solid #ffffff !important;
}
.cid-tBHaTVueR6 .navbar-dropdown {
  background-color: #fdfcfa !important;
  padding: 0;
}
.cid-tBHaTVueR6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fdfcfa !important;
  background: #fdfcfa;
}
.cid-tBHaTVueR6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tBHaTVueR6 .menu_box .navbar.opened,
  .cid-tBHaTVueR6 .menu_box .navbar-collapse {
    background-color: #fdfcfa !important;
    transition: all 0s ease 0s;
  }
}
.cid-tBHaTVueR6 .navbar-dropdown {
  position: relative !important;
}
.cid-tBHaTVueR6 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tBHaTVueR6 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tBHaTVueR6 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tBHaTVueR6 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tBHaTVueR6 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tBHaTVueR6 .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #d17756;
  }
  .cid-tBHaTVueR6 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tBHaTVueR6 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tBHaTVueR6 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tBHaTVueR6 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tBHaTVueR6 .offcanvas-body .mbr-text,
  .cid-tBHaTVueR6 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tBHaTVueR6 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tBHaTVueR6 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tBHaTVueR6 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #263a5c;
  }
  .cid-tBHaTVueR6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tBHaTVueR6 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tBHaTVueR6 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tBHaTVueR6 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tBHaTVueR6 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tBHaTVueR6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tBHaTVueR6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tBHaTVueR6 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tBHaTVueR6 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tBHaTVueR6 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tBHaTVueR6 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tBHaTVueR6 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tBHaTVueR6 .nav-item {
    margin: 0 !important;
  }
}
.cid-tBHaTVueR6 .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-tBHaTVueR6 .nav-item .nav-link:hover {
  opacity: .5;
}
.cid-tBHaTVueR6 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tBHaTVueR6 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tBHaTVueR6 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tBHaTVueR6 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tBHaTVueR6 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tBHaTVueR6 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tBHaTVueR6 .offcanvas_box {
    display: none;
  }
}
.cid-tBHaTVueR6 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tBHaTVueR6 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tBHaTVueR6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tBHaTVueR6 .container {
  display: flex;
  margin: auto;
}
.cid-tBHaTVueR6 .iconfont-wrapper {
  color: #263a5c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tBHaTVueR6 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tBHaTVueR6 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tBHaTVueR6 .navbar-caption {
  color: #263652;
}
.cid-tBHaTVueR6 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tBHaTVueR6 .navbar-nav {
    margin: 0;
  }
}
.cid-tBHaTVueR6 .dropdown-menu,
.cid-tBHaTVueR6 .navbar.opened {
  background-color: false !important;
}
.cid-tBHaTVueR6 .nav-item:focus,
.cid-tBHaTVueR6 .nav-link:focus {
  outline: none;
}
.cid-tBHaTVueR6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBHaTVueR6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBHaTVueR6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBHaTVueR6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBHaTVueR6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBHaTVueR6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBHaTVueR6 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tBHaTVueR6 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tBHaTVueR6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tBHaTVueR6 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tBHaTVueR6 .navbar .navbar-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.cid-tBHaTVueR6 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tBHaTVueR6 .navbar.collapsed {
  justify-content: center;
}
.cid-tBHaTVueR6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBHaTVueR6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tBHaTVueR6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBHaTVueR6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBHaTVueR6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBHaTVueR6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tBHaTVueR6 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tBHaTVueR6 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tBHaTVueR6 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tBHaTVueR6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBHaTVueR6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBHaTVueR6 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tBHaTVueR6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBHaTVueR6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tBHaTVueR6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBHaTVueR6 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tBHaTVueR6 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tBHaTVueR6 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tBHaTVueR6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBHaTVueR6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBHaTVueR6 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tBHaTVueR6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBHaTVueR6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBHaTVueR6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBHaTVueR6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBHaTVueR6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tBHaTVueR6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBHaTVueR6 .dropdown-item.active,
.cid-tBHaTVueR6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tBHaTVueR6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBHaTVueR6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBHaTVueR6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBHaTVueR6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBHaTVueR6 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tBHaTVueR6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBHaTVueR6 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fdfcfa;
  background: #d17756;
}
.cid-tBHaTVueR6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #263a5c;
}
.cid-tBHaTVueR6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBHaTVueR6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBHaTVueR6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBHaTVueR6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBHaTVueR6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBHaTVueR6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBHaTVueR6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBHaTVueR6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBHaTVueR6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tBHaTVueR6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBHaTVueR6 .navbar {
    height: 70px;
  }
  .cid-tBHaTVueR6 .navbar.opened {
    height: auto;
  }
  .cid-tBHaTVueR6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBHaTVueR6 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tBHaTVueR6 .container-fluid {
    padding-left: 160px;
    padding-right: 16px;
  }
}
.cid-tBHaTVueR6 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tBHaTVueR6 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-tBHaTVueR6 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tBHaTVueR6 .navbar-caption:hover {
  color: #3b6e8f;
}
@media (min-width: 992px) {
  .cid-tBHaTVueR6 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tBHaTVueR6 .text_widget {
  margin-bottom: 32px;
}
.cid-tBHaTVueR6 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tBHaTVueR6 .text_widget a:hover {
  color: #263a5c !important;
}
.cid-tBHaTVueR6 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tBHaTVueR6 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tBHaTVueR6 .mbr-section-subtitle,
.cid-tBHaTVueR6 .text_widget,
.cid-tBHaTVueR6 .mbr-section-btn {
  text-align: left;
}
.cid-tBHaTVueR6 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tBHaUdXRgc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/89966ea3aeabefe29eab5a9992c58d93-489x476.jpg");
}
.cid-tBHaUdXRgc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBHaUdXRgc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBHaUdXRgc .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tBHaUdXRgc .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tBHaUdXRgc .container {
    padding: 0;
  }
}
.cid-tBHaUdXRgc .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tBHaUdXRgc .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #263652;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tBHaUdXRgc .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-tBHaUdXRgc .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-tBHaUdXRgc .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-tBHaUdXRgc .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-tBHaUdXRgc .mbr-section-title {
  color: #ffffff;
}
.cid-tBHaUdXRgc .mbr-box {
  color: #ffffff;
}
.cid-tBHaUdXRgc .mbr-section-btn {
  text-align: center;
}
.cid-tQEOM784R1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fdfcfa;
}
.cid-tQEOM784R1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQEOM784R1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQEOM784R1 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tQEOM784R1 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQEOM784R1 .container {
    padding: 0;
  }
}
.cid-tQEOM784R1 .row {
  justify-content: center;
}
.cid-tQEOM784R1 .title-wrapper {
  padding: 0 16px;
}
.cid-tQEOM784R1 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tQEOM784R1 .mbr-section-title {
  color: #263652;
}
.cid-tBHcSbVAyp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdfcfa;
}
.cid-tBHcSbVAyp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBHcSbVAyp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBHcSbVAyp .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tBHcSbVAyp .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tBHcSbVAyp .container {
    padding: 0;
  }
}
.cid-tBHcSbVAyp .row {
  margin: 0;
}
.cid-tBHcSbVAyp .card {
  padding: 0;
}
.cid-tBHcSbVAyp .card .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.cid-tBHcSbVAyp .card .image-wrapper img {
  height: 740px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tBHcSbVAyp .card .image-wrapper img {
    height: 300px;
  }
}
.cid-tBHcSbVAyp .card .images-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tBHcSbVAyp .card .images-wrapper .images-wrap img {
  height: 280px;
  object-fit: cover;
}
.cid-tBHcSbVAyp .card .title-wrapper {
  padding: 0 150px;
}
.cid-tBHcSbVAyp .card .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tBHcSbVAyp .card .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .cid-tBHcSbVAyp .card .title-wrapper {
    padding: 0 90px;
  }
}
@media (max-width: 992px) {
  .cid-tBHcSbVAyp .card .title-wrapper {
    padding: 40px 16px;
  }
}
.cid-tBHcSbVAyp .mbr-section-title {
  color: #263a5c;
}
.cid-tBHcSbVAyp .mbr-text {
  color: #263652;
}
.cid-tBHcSWbjiX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/61stfz1vhal-500x500.jpg");
}
.cid-tBHcSWbjiX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBHcSWbjiX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBHcSWbjiX .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tBHcSWbjiX .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tBHcSWbjiX .container {
    padding: 0;
  }
}
.cid-tBHcSWbjiX .row {
  margin: 0;
}
.cid-tBHcSWbjiX .title-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-tBHcSWbjiX .title-wrapper {
    padding: 90px 4px;
  }
}
@media (max-width: 768px) {
  .cid-tBHcSWbjiX .title-wrapper {
    padding: 30px 4px;
  }
}
.cid-tBHcSWbjiX .title-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  letter-spacing: 3.4px;
}
.cid-tBHcSWbjiX .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .cid-tBHcSWbjiX .title-wrapper .mbr-section-title {
    margin-bottom: 15px;
  }
}
.cid-tBHcSWbjiX .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tBHcSWbjiX .mbr-section-title {
  color: #ffffff;
}
.cid-tBHcSWbjiX .mbr-section-title,
.cid-tBHcSWbjiX .mbr-section-btn {
  text-align: left;
}
.cid-tQQ7k6e4JG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff2fb;
}
.cid-tQQ7k6e4JG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQ7k6e4JG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQ7k6e4JG .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-tQQ7k6e4JG .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tQQ7k6e4JG .container {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-tQQ7k6e4JG .image-wrapper {
    padding: 0;
  }
}
.cid-tQQ7k6e4JG .image-wrapper img {
  height: 600px;
  object-fit: cover;
  border-radius: 40px !important;
}
@media (max-width: 992px) {
  .cid-tQQ7k6e4JG .image-wrapper img {
    height: 350px;
  }
}
.cid-tQQ7k6e4JG .content-wrapper {
  padding-right: 80px;
  padding-right: 0;
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-tQQ7k6e4JG .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQQ7k6e4JG .content-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.cid-tQQ7k6e4JG .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tQQ7k6e4JG .content-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-tQQ7k6e4JG .content-wrapper .mbr-text {
  margin: 64px 0 0;
}
@media (max-width: 992px) {
  .cid-tQQ7k6e4JG .content-wrapper .mbr-text {
    margin: 32px 0 0;
  }
}
.cid-tQQ7k6e4JG .content-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-tQQ7k6e4JG .content-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-tQQ7k6e4JG .mbr-section-title {
  color: #262642;
}
.cid-tQQ7k6e4JG .mbr-section-subtitle {
  color: #8e8ead;
}
.cid-tQQ7k6e4JG .mbr-text {
  color: #262642;
}
.cid-tQQ6BVlpwJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #263a5c;
}
.cid-tQQ6BVlpwJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQ6BVlpwJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tQQ6BVlpwJ .container {
    padding: 0 30px;
  }
}
.cid-tQQ6BVlpwJ .row {
  justify-content: center;
}
.cid-tQQ6BVlpwJ .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tQQ6BVlpwJ .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tQQ6BVlpwJ .title-wrapper .list {
  padding-left: 20px;
  margin-bottom: 16px;
}
.cid-tQQ6BVlpwJ .title-wrapper .list .item-wrap {
  margin-bottom: 0;
}
.cid-tQQ6BVlpwJ .mbr-section-title {
  color: #fdfcfa;
}
.cid-tQQ6BVlpwJ .mbr-text {
  color: #212529;
}
.cid-tQQ6BVlpwJ .list {
  color: #ffffff;
}
.cid-tQQdFNtJ98 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #fdfcfa;
}
.cid-tQQdFNtJ98 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQdFNtJ98 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tQQdFNtJ98 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tQQdFNtJ98 .row {
  flex-direction: row-reverse;
}
.cid-tQQdFNtJ98 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tQQdFNtJ98 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tQQdFNtJ98 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tQQdFNtJ98 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tQQdFNtJ98 .mbr-text,
.cid-tQQdFNtJ98 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tQQecfg6jA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/istockphoto-146821158-612x410.jpg");
}
.cid-tQQecfg6jA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQecfg6jA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQecfg6jA .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tQQecfg6jA .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tQQecfg6jA .container {
    padding: 0 26px;
  }
}
.cid-tQQecfg6jA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tQQecfg6jA .title-wrapper .mbr-section-btn {
  margin-top: 50px;
}
.cid-tQQecfg6jA .mbr-section-title {
  color: #ffffff;
}
.cid-tQQecfg6jA .mbr-section-title,
.cid-tQQecfg6jA .mbr-section-btn {
  text-align: center;
}
.cid-tQEOs2jfbr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f8f6f2;
}
.cid-tQEOs2jfbr .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQEOs2jfbr .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tQEOs2jfbr .card-title {
  color: #000000;
}
.cid-tQEOs2jfbr .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tQEOs2jfbr .mbr-text {
    margin-top: 24px;
  }
}
.cid-tQEOs2jfbr .mbr-section-btn {
  margin-top: 30px;
}
.cid-tQEOs2jfbr .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tQEOs2jfbr .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tQEOs2jfbr .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tQEOs2jfbr .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tQEOs2jfbr .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-tQEOs2jfbr .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tQEOs2jfbr .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tQEOs2jfbr .mbr-text,
.cid-tQEOs2jfbr .mbr-section-btn {
  color: #000000;
}
.cid-tQEOwG7Jnr {
  padding-top: 30px;
  padding-bottom: 45px;
  margin-top: -1px;
  overflow: hidden;
  border-bottom: 1px solid #7f8678;
  border-top: 1px solid #7f8678;
  background-color: #263652;
}
.cid-tQEOwG7Jnr .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cid-tQEOwG7Jnr .copyright {
  margin-top: 0.5rem;
  color: #ffffff;
  flex-grow: 1;
  margin-right: 0.5rem;
}
.cid-tQEOwG7Jnr .produced {
  margin-top: 0.5rem;
  color: #ffffff;
  flex-grow: 1;
}
.cid-tQEWRoCMSp .navbar-dropdown {
  background-color: #fdfcfa !important;
  padding: 0;
}
.cid-tQEWRoCMSp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fdfcfa !important;
  background: #fdfcfa;
}
.cid-tQEWRoCMSp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tQEWRoCMSp .menu_box .navbar.opened,
  .cid-tQEWRoCMSp .menu_box .navbar-collapse {
    background-color: #fdfcfa !important;
    transition: all 0s ease 0s;
  }
}
.cid-tQEWRoCMSp .navbar-dropdown {
  position: relative !important;
}
.cid-tQEWRoCMSp .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tQEWRoCMSp .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tQEWRoCMSp .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tQEWRoCMSp .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tQEWRoCMSp .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tQEWRoCMSp .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #d17756;
  }
  .cid-tQEWRoCMSp .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tQEWRoCMSp .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tQEWRoCMSp .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tQEWRoCMSp .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tQEWRoCMSp .offcanvas-body .mbr-text,
  .cid-tQEWRoCMSp .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tQEWRoCMSp .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tQEWRoCMSp .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tQEWRoCMSp .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #263a5c;
  }
  .cid-tQEWRoCMSp .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tQEWRoCMSp .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tQEWRoCMSp .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tQEWRoCMSp .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tQEWRoCMSp ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tQEWRoCMSp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tQEWRoCMSp .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tQEWRoCMSp .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tQEWRoCMSp li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tQEWRoCMSp .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tQEWRoCMSp .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tQEWRoCMSp .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tQEWRoCMSp .nav-item {
    margin: 0 !important;
  }
}
.cid-tQEWRoCMSp .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-tQEWRoCMSp .nav-item .nav-link:hover {
  opacity: .5;
}
.cid-tQEWRoCMSp .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tQEWRoCMSp .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tQEWRoCMSp .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tQEWRoCMSp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tQEWRoCMSp .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tQEWRoCMSp .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tQEWRoCMSp .offcanvas_box {
    display: none;
  }
}
.cid-tQEWRoCMSp .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tQEWRoCMSp .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tQEWRoCMSp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tQEWRoCMSp .container {
  display: flex;
  margin: auto;
}
.cid-tQEWRoCMSp .iconfont-wrapper {
  color: #263a5c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tQEWRoCMSp .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tQEWRoCMSp .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tQEWRoCMSp .navbar-caption {
  color: #263652;
}
.cid-tQEWRoCMSp .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tQEWRoCMSp .navbar-nav {
    margin: 0;
  }
}
.cid-tQEWRoCMSp .dropdown-menu,
.cid-tQEWRoCMSp .navbar.opened {
  background-color: false !important;
}
.cid-tQEWRoCMSp .nav-item:focus,
.cid-tQEWRoCMSp .nav-link:focus {
  outline: none;
}
.cid-tQEWRoCMSp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tQEWRoCMSp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQEWRoCMSp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tQEWRoCMSp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tQEWRoCMSp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQEWRoCMSp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQEWRoCMSp .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tQEWRoCMSp .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tQEWRoCMSp .navbar.opened {
  transition: all 0.3s;
}
.cid-tQEWRoCMSp .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tQEWRoCMSp .navbar .navbar-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.cid-tQEWRoCMSp .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tQEWRoCMSp .navbar.collapsed {
  justify-content: center;
}
.cid-tQEWRoCMSp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQEWRoCMSp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQEWRoCMSp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQEWRoCMSp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQEWRoCMSp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQEWRoCMSp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tQEWRoCMSp .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tQEWRoCMSp .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tQEWRoCMSp .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tQEWRoCMSp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQEWRoCMSp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQEWRoCMSp .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tQEWRoCMSp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQEWRoCMSp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tQEWRoCMSp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tQEWRoCMSp .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tQEWRoCMSp .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tQEWRoCMSp .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tQEWRoCMSp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tQEWRoCMSp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQEWRoCMSp .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tQEWRoCMSp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQEWRoCMSp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tQEWRoCMSp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tQEWRoCMSp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQEWRoCMSp .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tQEWRoCMSp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQEWRoCMSp .dropdown-item.active,
.cid-tQEWRoCMSp .dropdown-item:active {
  background-color: transparent;
}
.cid-tQEWRoCMSp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQEWRoCMSp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQEWRoCMSp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQEWRoCMSp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQEWRoCMSp ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tQEWRoCMSp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tQEWRoCMSp button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fdfcfa;
  background: #d17756;
}
.cid-tQEWRoCMSp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #263a5c;
}
.cid-tQEWRoCMSp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQEWRoCMSp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQEWRoCMSp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQEWRoCMSp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQEWRoCMSp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQEWRoCMSp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tQEWRoCMSp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tQEWRoCMSp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQEWRoCMSp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tQEWRoCMSp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQEWRoCMSp .navbar {
    height: 70px;
  }
  .cid-tQEWRoCMSp .navbar.opened {
    height: auto;
  }
  .cid-tQEWRoCMSp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQEWRoCMSp .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tQEWRoCMSp .container-fluid {
    padding-left: 160px;
    padding-right: 16px;
  }
}
.cid-tQEWRoCMSp .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tQEWRoCMSp .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-tQEWRoCMSp .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tQEWRoCMSp .navbar-caption:hover {
  color: #3b6e8f;
}
@media (min-width: 992px) {
  .cid-tQEWRoCMSp .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tQEWRoCMSp .text_widget {
  margin-bottom: 32px;
}
.cid-tQEWRoCMSp .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tQEWRoCMSp .text_widget a:hover {
  color: #263a5c !important;
}
.cid-tQEWRoCMSp .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tQEWRoCMSp .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tQEWRoCMSp .mbr-section-subtitle,
.cid-tQEWRoCMSp .text_widget,
.cid-tQEWRoCMSp .mbr-section-btn {
  text-align: left;
}
.cid-tQEWRoCMSp a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tQEWRr4kEJ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/oip-4-474x474.jpg");
}
.cid-tQEWRr4kEJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQEWRr4kEJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQEWRr4kEJ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tQEWRr4kEJ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQEWRr4kEJ .container {
    padding: 0;
  }
}
.cid-tQEWRr4kEJ .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tQEWRr4kEJ .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #263652;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tQEWRr4kEJ .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-tQEWRr4kEJ .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-tQEWRr4kEJ .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-tQEWRr4kEJ .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-tQEWRr4kEJ .mbr-section-title {
  color: #ffffff;
}
.cid-tQEWRr4kEJ .mbr-box {
  color: #ffffff;
}
.cid-tQEWRr4kEJ .mbr-section-btn {
  text-align: center;
}
.cid-tQEWRrTA1e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffeec7;
}
.cid-tQEWRrTA1e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQEWRrTA1e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQEWRrTA1e .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tQEWRrTA1e .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQEWRrTA1e .container {
    padding: 0;
  }
}
.cid-tQEWRrTA1e .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tQEWRrTA1e .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tQEWRrTA1e .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tQEWRrTA1e .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tQEWRrTA1e .mbr-section-title {
  color: #263652;
}
.cid-tQEWRrTA1e .mbr-text {
  color: #000000;
}
.cid-tQEWRsMSS4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/upt-23711-web-small-700x700.jpg");
}
.cid-tQEWRsMSS4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQEWRsMSS4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQEWRsMSS4 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tQEWRsMSS4 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQEWRsMSS4 .container {
    padding: 0;
  }
}
.cid-tQEWRsMSS4 .row {
  min-height: 630px;
}
@media (max-width: 992px) {
  .cid-tQEWRsMSS4 .row {
    min-height: 450px;
  }
}
.cid-tQEWRtBdSZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffeec7;
}
.cid-tQEWRtBdSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQEWRtBdSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQEWRtBdSZ .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tQEWRtBdSZ .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tQEWRtBdSZ .container {
    padding: 0 26px;
  }
}
.cid-tQEWRtBdSZ .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-tQEWRtBdSZ .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-tQEWRtBdSZ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tQEWRtBdSZ .mbr-section-title {
  color: #ffffff;
}
.cid-tQEWRtBdSZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tQEWRtBdSZ .mbr-text {
  color: #000000;
}
.cid-tQEWRuuhK3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tQEWRuuhK3 .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQEWRuuhK3 .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tQEWRuuhK3 .card-title {
  color: #45494E;
}
.cid-tQEWRuuhK3 .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tQEWRuuhK3 .mbr-text {
    margin-top: 24px;
  }
}
.cid-tQEWRuuhK3 .mbr-section-btn {
  margin-top: 30px;
}
.cid-tQEWRuuhK3 .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tQEWRuuhK3 .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tQEWRuuhK3 .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tQEWRuuhK3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tQEWRuuhK3 .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-tQEWRuuhK3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tQEWRuuhK3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tQEWRvvfRm {
  padding-top: 30px;
  padding-bottom: 45px;
  margin-top: -1px;
  overflow: hidden;
  border-bottom: 1px solid #7f8678;
  border-top: 1px solid #7f8678;
  background-color: #263652;
}
.cid-tQEWRvvfRm .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cid-tQEWRvvfRm .copyright {
  margin-top: 0.5rem;
  color: #ffffff;
  flex-grow: 1;
  margin-right: 0.5rem;
}
.cid-tQEWRvvfRm .produced {
  margin-top: 0.5rem;
  color: #ffffff;
  flex-grow: 1;
}
.cid-tQQmSVVc9j .navbar-dropdown {
  background-color: #fdfcfa !important;
  padding: 0;
}
.cid-tQQmSVVc9j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fdfcfa !important;
  background: #fdfcfa;
}
.cid-tQQmSVVc9j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tQQmSVVc9j .menu_box .navbar.opened,
  .cid-tQQmSVVc9j .menu_box .navbar-collapse {
    background-color: #fdfcfa !important;
    transition: all 0s ease 0s;
  }
}
.cid-tQQmSVVc9j .navbar-dropdown {
  position: relative !important;
}
.cid-tQQmSVVc9j .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tQQmSVVc9j .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tQQmSVVc9j .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tQQmSVVc9j .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tQQmSVVc9j .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tQQmSVVc9j .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #d17756;
  }
  .cid-tQQmSVVc9j .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tQQmSVVc9j .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tQQmSVVc9j .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tQQmSVVc9j .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tQQmSVVc9j .offcanvas-body .mbr-text,
  .cid-tQQmSVVc9j .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tQQmSVVc9j .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tQQmSVVc9j .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tQQmSVVc9j .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #263a5c;
  }
  .cid-tQQmSVVc9j .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tQQmSVVc9j .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tQQmSVVc9j .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tQQmSVVc9j .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tQQmSVVc9j ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tQQmSVVc9j .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tQQmSVVc9j .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tQQmSVVc9j .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tQQmSVVc9j li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tQQmSVVc9j .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tQQmSVVc9j .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tQQmSVVc9j .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tQQmSVVc9j .nav-item {
    margin: 0 !important;
  }
}
.cid-tQQmSVVc9j .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-tQQmSVVc9j .nav-item .nav-link:hover {
  opacity: .5;
}
.cid-tQQmSVVc9j .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tQQmSVVc9j .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tQQmSVVc9j .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tQQmSVVc9j .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tQQmSVVc9j .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tQQmSVVc9j .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tQQmSVVc9j .offcanvas_box {
    display: none;
  }
}
.cid-tQQmSVVc9j .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tQQmSVVc9j .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tQQmSVVc9j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tQQmSVVc9j .container {
  display: flex;
  margin: auto;
}
.cid-tQQmSVVc9j .iconfont-wrapper {
  color: #263a5c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tQQmSVVc9j .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tQQmSVVc9j .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tQQmSVVc9j .navbar-caption {
  color: #263652;
}
.cid-tQQmSVVc9j .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tQQmSVVc9j .navbar-nav {
    margin: 0;
  }
}
.cid-tQQmSVVc9j .dropdown-menu,
.cid-tQQmSVVc9j .navbar.opened {
  background-color: false !important;
}
.cid-tQQmSVVc9j .nav-item:focus,
.cid-tQQmSVVc9j .nav-link:focus {
  outline: none;
}
.cid-tQQmSVVc9j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tQQmSVVc9j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQQmSVVc9j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tQQmSVVc9j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tQQmSVVc9j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQQmSVVc9j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQQmSVVc9j .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tQQmSVVc9j .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tQQmSVVc9j .navbar.opened {
  transition: all 0.3s;
}
.cid-tQQmSVVc9j .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tQQmSVVc9j .navbar .navbar-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.cid-tQQmSVVc9j .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tQQmSVVc9j .navbar.collapsed {
  justify-content: center;
}
.cid-tQQmSVVc9j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQQmSVVc9j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQQmSVVc9j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQQmSVVc9j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQQmSVVc9j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQQmSVVc9j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tQQmSVVc9j .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tQQmSVVc9j .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tQQmSVVc9j .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tQQmSVVc9j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQQmSVVc9j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQQmSVVc9j .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tQQmSVVc9j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQQmSVVc9j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tQQmSVVc9j .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tQQmSVVc9j .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tQQmSVVc9j .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tQQmSVVc9j .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tQQmSVVc9j .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tQQmSVVc9j .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQQmSVVc9j .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tQQmSVVc9j .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQQmSVVc9j .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tQQmSVVc9j .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tQQmSVVc9j .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQQmSVVc9j .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tQQmSVVc9j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQQmSVVc9j .dropdown-item.active,
.cid-tQQmSVVc9j .dropdown-item:active {
  background-color: transparent;
}
.cid-tQQmSVVc9j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQQmSVVc9j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQQmSVVc9j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQQmSVVc9j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQQmSVVc9j ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tQQmSVVc9j .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tQQmSVVc9j button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fdfcfa;
  background: #d17756;
}
.cid-tQQmSVVc9j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #263a5c;
}
.cid-tQQmSVVc9j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQQmSVVc9j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQQmSVVc9j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQQmSVVc9j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQQmSVVc9j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQQmSVVc9j nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tQQmSVVc9j nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tQQmSVVc9j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQQmSVVc9j a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tQQmSVVc9j .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQQmSVVc9j .navbar {
    height: 70px;
  }
  .cid-tQQmSVVc9j .navbar.opened {
    height: auto;
  }
  .cid-tQQmSVVc9j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQQmSVVc9j .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tQQmSVVc9j .container-fluid {
    padding-left: 160px;
    padding-right: 16px;
  }
}
.cid-tQQmSVVc9j .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tQQmSVVc9j .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-tQQmSVVc9j .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tQQmSVVc9j .navbar-caption:hover {
  color: #3b6e8f;
}
@media (min-width: 992px) {
  .cid-tQQmSVVc9j .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tQQmSVVc9j .text_widget {
  margin-bottom: 32px;
}
.cid-tQQmSVVc9j .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tQQmSVVc9j .text_widget a:hover {
  color: #263a5c !important;
}
.cid-tQQmSVVc9j .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tQQmSVVc9j .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tQQmSVVc9j .mbr-section-subtitle,
.cid-tQQmSVVc9j .text_widget,
.cid-tQQmSVVc9j .mbr-section-btn {
  text-align: left;
}
.cid-tQQmSVVc9j a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tQQmSWFfGV {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/civic-camo-cooler-bags-main-530x530.jpg");
}
.cid-tQQmSWFfGV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQmSWFfGV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQmSWFfGV .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tQQmSWFfGV .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQQmSWFfGV .container {
    padding: 0;
  }
}
.cid-tQQmSWFfGV .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tQQmSWFfGV .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #263652;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tQQmSWFfGV .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-tQQmSWFfGV .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-tQQmSWFfGV .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-tQQmSWFfGV .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-tQQmSWFfGV .mbr-section-title {
  color: #ffffff;
}
.cid-tQQmSWFfGV .mbr-box {
  color: #ffffff;
}
.cid-tQQmSWFfGV .mbr-section-btn {
  text-align: center;
}
.cid-tQQmSXe7b5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffeec7;
}
.cid-tQQmSXe7b5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQmSXe7b5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQmSXe7b5 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tQQmSXe7b5 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQQmSXe7b5 .container {
    padding: 0;
  }
}
.cid-tQQmSXe7b5 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tQQmSXe7b5 .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tQQmSXe7b5 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tQQmSXe7b5 .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tQQmSXe7b5 .mbr-section-title {
  color: #263652;
}
.cid-tQQmSXe7b5 .mbr-text {
  color: #000000;
}
.cid-tQQmSXwpj4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/istockphoto-1437054468-612x408.jpg");
}
.cid-tQQmSXwpj4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQmSXwpj4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQmSXwpj4 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tQQmSXwpj4 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQQmSXwpj4 .container {
    padding: 0;
  }
}
.cid-tQQmSXwpj4 .row {
  min-height: 630px;
}
@media (max-width: 992px) {
  .cid-tQQmSXwpj4 .row {
    min-height: 450px;
  }
}
.cid-tQQmSXOXo8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffeec7;
}
.cid-tQQmSXOXo8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQmSXOXo8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQmSXOXo8 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tQQmSXOXo8 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tQQmSXOXo8 .container {
    padding: 0 26px;
  }
}
.cid-tQQmSXOXo8 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-tQQmSXOXo8 .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-tQQmSXOXo8 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tQQmSXOXo8 .mbr-section-title {
  color: #ffffff;
}
.cid-tQQmSXOXo8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tQQmSXOXo8 .mbr-text {
  color: #000000;
}
.cid-tQQmSY7m1h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tQQmSY7m1h .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQQmSY7m1h .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tQQmSY7m1h .card-title {
  color: #45494E;
}
.cid-tQQmSY7m1h .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tQQmSY7m1h .mbr-text {
    margin-top: 24px;
  }
}
.cid-tQQmSY7m1h .mbr-section-btn {
  margin-top: 30px;
}
.cid-tQQmSY7m1h .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tQQmSY7m1h .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tQQmSY7m1h .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tQQmSY7m1h .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tQQmSY7m1h .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-tQQmSY7m1h .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tQQmSY7m1h .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tQQmSYzKBV {
  padding-top: 30px;
  padding-bottom: 45px;
  margin-top: -1px;
  overflow: hidden;
  border-bottom: 1px solid #7f8678;
  border-top: 1px solid #7f8678;
  background-color: #263652;
}
.cid-tQQmSYzKBV .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cid-tQQmSYzKBV .copyright {
  margin-top: 0.5rem;
  color: #ffffff;
  flex-grow: 1;
  margin-right: 0.5rem;
}
.cid-tQQmSYzKBV .produced {
  margin-top: 0.5rem;
  color: #ffffff;
  flex-grow: 1;
}
.cid-tQQoJkYfIf .navbar-dropdown {
  background-color: #fdfcfa !important;
  padding: 0;
}
.cid-tQQoJkYfIf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #fdfcfa !important;
  background: #fdfcfa;
}
.cid-tQQoJkYfIf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tQQoJkYfIf .menu_box .navbar.opened,
  .cid-tQQoJkYfIf .menu_box .navbar-collapse {
    background-color: #fdfcfa !important;
    transition: all 0s ease 0s;
  }
}
.cid-tQQoJkYfIf .navbar-dropdown {
  position: relative !important;
}
.cid-tQQoJkYfIf .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tQQoJkYfIf .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tQQoJkYfIf .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tQQoJkYfIf .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tQQoJkYfIf .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tQQoJkYfIf .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #d17756;
  }
  .cid-tQQoJkYfIf .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tQQoJkYfIf .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tQQoJkYfIf .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tQQoJkYfIf .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tQQoJkYfIf .offcanvas-body .mbr-text,
  .cid-tQQoJkYfIf .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tQQoJkYfIf .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tQQoJkYfIf .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tQQoJkYfIf .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #263a5c;
  }
  .cid-tQQoJkYfIf .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tQQoJkYfIf .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tQQoJkYfIf .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tQQoJkYfIf .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tQQoJkYfIf ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tQQoJkYfIf .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tQQoJkYfIf .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tQQoJkYfIf .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tQQoJkYfIf li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tQQoJkYfIf .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tQQoJkYfIf .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tQQoJkYfIf .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tQQoJkYfIf .nav-item {
    margin: 0 !important;
  }
}
.cid-tQQoJkYfIf .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-tQQoJkYfIf .nav-item .nav-link:hover {
  opacity: .5;
}
.cid-tQQoJkYfIf .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tQQoJkYfIf .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tQQoJkYfIf .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tQQoJkYfIf .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tQQoJkYfIf .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tQQoJkYfIf .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tQQoJkYfIf .offcanvas_box {
    display: none;
  }
}
.cid-tQQoJkYfIf .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tQQoJkYfIf .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tQQoJkYfIf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tQQoJkYfIf .container {
  display: flex;
  margin: auto;
}
.cid-tQQoJkYfIf .iconfont-wrapper {
  color: #263a5c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tQQoJkYfIf .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tQQoJkYfIf .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tQQoJkYfIf .navbar-caption {
  color: #263652;
}
.cid-tQQoJkYfIf .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tQQoJkYfIf .navbar-nav {
    margin: 0;
  }
}
.cid-tQQoJkYfIf .dropdown-menu,
.cid-tQQoJkYfIf .navbar.opened {
  background-color: false !important;
}
.cid-tQQoJkYfIf .nav-item:focus,
.cid-tQQoJkYfIf .nav-link:focus {
  outline: none;
}
.cid-tQQoJkYfIf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tQQoJkYfIf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQQoJkYfIf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tQQoJkYfIf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tQQoJkYfIf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQQoJkYfIf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQQoJkYfIf .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tQQoJkYfIf .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tQQoJkYfIf .navbar.opened {
  transition: all 0.3s;
}
.cid-tQQoJkYfIf .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tQQoJkYfIf .navbar .navbar-logo img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}
.cid-tQQoJkYfIf .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tQQoJkYfIf .navbar.collapsed {
  justify-content: center;
}
.cid-tQQoJkYfIf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQQoJkYfIf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tQQoJkYfIf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQQoJkYfIf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQQoJkYfIf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQQoJkYfIf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tQQoJkYfIf .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tQQoJkYfIf .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tQQoJkYfIf .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tQQoJkYfIf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQQoJkYfIf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQQoJkYfIf .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tQQoJkYfIf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQQoJkYfIf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tQQoJkYfIf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tQQoJkYfIf .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tQQoJkYfIf .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tQQoJkYfIf .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tQQoJkYfIf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tQQoJkYfIf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQQoJkYfIf .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tQQoJkYfIf .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQQoJkYfIf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tQQoJkYfIf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tQQoJkYfIf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQQoJkYfIf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tQQoJkYfIf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQQoJkYfIf .dropdown-item.active,
.cid-tQQoJkYfIf .dropdown-item:active {
  background-color: transparent;
}
.cid-tQQoJkYfIf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQQoJkYfIf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQQoJkYfIf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQQoJkYfIf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQQoJkYfIf ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tQQoJkYfIf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tQQoJkYfIf button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #fdfcfa;
  background: #d17756;
}
.cid-tQQoJkYfIf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #263a5c;
}
.cid-tQQoJkYfIf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQQoJkYfIf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQQoJkYfIf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQQoJkYfIf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQQoJkYfIf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQQoJkYfIf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tQQoJkYfIf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tQQoJkYfIf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQQoJkYfIf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tQQoJkYfIf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQQoJkYfIf .navbar {
    height: 70px;
  }
  .cid-tQQoJkYfIf .navbar.opened {
    height: auto;
  }
  .cid-tQQoJkYfIf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tQQoJkYfIf .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tQQoJkYfIf .container-fluid {
    padding-left: 160px;
    padding-right: 16px;
  }
}
.cid-tQQoJkYfIf .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tQQoJkYfIf .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-tQQoJkYfIf .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tQQoJkYfIf .navbar-caption:hover {
  color: #3b6e8f;
}
@media (min-width: 992px) {
  .cid-tQQoJkYfIf .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tQQoJkYfIf .text_widget {
  margin-bottom: 32px;
}
.cid-tQQoJkYfIf .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tQQoJkYfIf .text_widget a:hover {
  color: #263a5c !important;
}
.cid-tQQoJkYfIf .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tQQoJkYfIf .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tQQoJkYfIf .mbr-section-subtitle,
.cid-tQQoJkYfIf .text_widget,
.cid-tQQoJkYfIf .mbr-section-btn {
  text-align: left;
}
.cid-tQQoJkYfIf a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tQQoJlxLsU {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/boracay-6-pack-coolers.webp");
}
.cid-tQQoJlxLsU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQoJlxLsU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQoJlxLsU .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tQQoJlxLsU .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQQoJlxLsU .container {
    padding: 0;
  }
}
.cid-tQQoJlxLsU .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tQQoJlxLsU .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #263652;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tQQoJlxLsU .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-tQQoJlxLsU .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-tQQoJlxLsU .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-tQQoJlxLsU .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-tQQoJlxLsU .mbr-section-title {
  color: #ffffff;
}
.cid-tQQoJlxLsU .mbr-box {
  color: #ffffff;
}
.cid-tQQoJlxLsU .mbr-section-btn {
  text-align: center;
}
.cid-tQQoJlPb6d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffeec7;
}
.cid-tQQoJlPb6d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQoJlPb6d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQoJlPb6d .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tQQoJlPb6d .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQQoJlPb6d .container {
    padding: 0;
  }
}
.cid-tQQoJlPb6d .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tQQoJlPb6d .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tQQoJlPb6d .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tQQoJlPb6d .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-tQQoJlPb6d .mbr-section-title {
  color: #263652;
}
.cid-tQQoJlPb6d .mbr-text {
  color: #000000;
}
.cid-tQQoJm75NZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/istockphoto-940723248-612x408.jpg");
}
.cid-tQQoJm75NZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQoJm75NZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQoJm75NZ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tQQoJm75NZ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQQoJm75NZ .container {
    padding: 0;
  }
}
.cid-tQQoJm75NZ .row {
  min-height: 630px;
}
@media (max-width: 992px) {
  .cid-tQQoJm75NZ .row {
    min-height: 450px;
  }
}
.cid-tQQoJmokiM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffeec7;
}
.cid-tQQoJmokiM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQQoJmokiM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQQoJmokiM .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tQQoJmokiM .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tQQoJmokiM .container {
    padding: 0 26px;
  }
}
.cid-tQQoJmokiM .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-tQQoJmokiM .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-tQQoJmokiM .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tQQoJmokiM .mbr-section-title {
  color: #ffffff;
}
.cid-tQQoJmokiM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tQQoJmokiM .mbr-text {
  color: #000000;
}
.cid-tQQoJmHruv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tQQoJmHruv .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tQQoJmHruv .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tQQoJmHruv .card-title {
  color: #45494E;
}
.cid-tQQoJmHruv .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tQQoJmHruv .mbr-text {
    margin-top: 24px;
  }
}
.cid-tQQoJmHruv .mbr-section-btn {
  margin-top: 30px;
}
.cid-tQQoJmHruv .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tQQoJmHruv .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tQQoJmHruv .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tQQoJmHruv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tQQoJmHruv .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-tQQoJmHruv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tQQoJmHruv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tQQoJn7qvs {
  padding-top: 30px;
  padding-bottom: 45px;
  margin-top: -1px;
  overflow: hidden;
  border-bottom: 1px solid #7f8678;
  border-top: 1px solid #7f8678;
  background-color: #263652;
}
.cid-tQQoJn7qvs .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cid-tQQoJn7qvs .copyright {
  margin-top: 0.5rem;
  color: #ffffff;
  flex-grow: 1;
  margin-right: 0.5rem;
}
.cid-tQQoJn7qvs .produced {
  margin-top: 0.5rem;
  color: #ffffff;
  flex-grow: 1;
}
