.btn {
  border-width: 2px;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper {
  border-radius: 2rem !important;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 4rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5625rem;
}
.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-5 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 62rem) / (87 - 62))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 62rem) / (87 - 62))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #f7f7f7 !important;
}
.bg-info {
  background-color: #ffeb69 !important;
}
.bg-warning {
  background-color: #1f6463 !important;
}
.bg-danger {
  background-color: #ffea64 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffd7ef !important;
  border-color: #ffd7ef !important;
  color: #d70081 !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #d70081 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffeb69 !important;
  border-color: #ffeb69 !important;
  color: #695b00 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #fff29c !important;
  border-color: #fff29c !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #695b00 !important;
  background-color: #fff29c !important;
  border-color: #fff29c !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7f7f7 !important;
  border-color: #f7f7f7 !important;
  color: #787878 !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #787878 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #1f6463 !important;
  border-color: #1f6463 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #2b8b8a !important;
  border-color: #2b8b8a !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #2b8b8a !important;
  border-color: #2b8b8a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffea64 !important;
  border-color: #ffea64 !important;
  color: #645600 !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #fff197 !important;
  border-color: #fff197 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #645600 !important;
  background-color: #fff197 !important;
  border-color: #fff197 !important;
}
.btn-white,
.btn-white:active {
  background-color: #eff0ec !important;
  border-color: #eff0ec !important;
  color: #757b62 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #757b62 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffd7ef;
  color: #ffd7ef;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff80cc !important;
  background-color: transparent !important;
  border-color: #ff80cc !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #d70081 !important;
  background-color: #ffd7ef !important;
  border-color: #ffd7ef !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffeb69;
  color: #ffeb69;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffdf12 !important;
  background-color: transparent !important;
  border-color: #ffdf12 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #695b00 !important;
  background-color: #ffeb69 !important;
  border-color: #ffeb69 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #f7f7f7;
  color: #f7f7f7;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #cccccc !important;
  background-color: transparent !important;
  border-color: #cccccc !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #787878 !important;
  background-color: #f7f7f7 !important;
  border-color: #f7f7f7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #1f6463;
  color: #1f6463;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #0a2221 !important;
  background-color: transparent !important;
  border-color: #0a2221 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #1f6463 !important;
  border-color: #1f6463 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffea64;
  color: #ffea64;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffde0d !important;
  background-color: transparent !important;
  border-color: #ffde0d !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #645600 !important;
  background-color: #ffea64 !important;
  border-color: #ffea64 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #ffd7ef !important;
}
.text-success {
  color: #f7f7f7 !important;
}
.text-info {
  color: #ffeb69 !important;
}
.text-warning {
  color: #1f6463 !important;
}
.text-danger {
  color: #ffea64 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff71c6 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c4c4c4 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #ffdd03 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #071616 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #fddb00 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffeb69;
}
.alert-warning {
  background-color: #1f6463;
}
.alert-danger {
  background-color: #ffea64;
}
.mbr-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #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: #3fc3c2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
  border-radius: 40px !important;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn .btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffd7ef !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
@media (max-width: 1400px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 1400px) and (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 1400px) and (min-width: 768px) {
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uOXtkv06dM .navbar {
  padding: 0.5rem 1rem;
  justify-content: space-between;
  background: #000000;
  transition: none;
  min-height: 50px;
  max-width: 100%;
  width: auto;
  opacity: 0;
  border-radius: 0em 0em 2em 2em;
  animation: fadeIn 0.5s ease-out forwards;
}
.cid-uOXtkv06dM .grow {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  border-radius: 15px 15px 15px 15px;
  color: gray;
}
.cid-uOXtkv06dM .grow:hover {
  transform: scale(1.1);
  transition: all 1s ease;
  opacity: 1;
  color: white;
}
.cid-uOXtkv06dM .navbar-fixed-top {
  padding-top: 0;
}
.cid-uOXtkv06dM .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uOXtkv06dM .collapse {
  justify-content: space-between !important;
}
.cid-uOXtkv06dM .dropdown-menu {
  z-index: 9999;
  border-radius: 0em 0em 2em 2em;
  background-color: #1a1a1a;
  color: gray;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.5s;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  margin-top: 0 !important;
}
.cid-uOXtkv06dM .dropdown-menu.show {
  opacity: 1;
}
.cid-uOXtkv06dM .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-uOXtkv06dM .mbr-iconfont {
  cursor: pointer;
}
.cid-uOXtkv06dM .nav-item {
  justify-content: flex-end;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-uOXtkv06dM .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #ffffff;
  border-radius: 50%;
}
.cid-uOXtkv06dM .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uOXtkv06dM .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-uOXtkv06dM .menu-logo {
  display: flex;
  align-items: center;
}
.cid-uOXtkv06dM .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uOXtkv06dM .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uOXtkv06dM .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uOXtkv06dM .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uOXtkv06dM .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uOXtkv06dM .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uOXtkv06dM .menu-content-top {
  background: #ca4400;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0em 0em 2em 2em;
  -webkit-box-shadow: 10px 10px 15px #000000;
}
.cid-uOXtkv06dM .dropdown-item {
  padding: 0.4rem 1.8rem;
  opacity: 1;
}
.cid-uOXtkv06dM .dropdown-item,
.cid-uOXtkv06dM .nav-link,
.cid-uOXtkv06dM .brand-name {
  font-style: normal;
  opacity: 1;
}
.cid-uOXtkv06dM .dropdown-item:hover,
.cid-uOXtkv06dM .nav-link:hover,
.cid-uOXtkv06dM .brand-name:hover {
  color: #ffffff !important;
}
.cid-uOXtkv06dM .dropdown-item:active {
  background-color: #1a1a1a;
  z-index: 9999;
  opacity: 1;
}
.cid-uOXtkv06dM .menu-bottom {
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
}
.cid-uOXtkv06dM .navbar-dropdown.bg-color.transparent.opened {
  background: rgba(0, 0, 0, 0.7) !important;
}
.cid-uOXtkv06dM .dropdown-item:before {
  align-items: center;
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOXtkv06dM .content-text {
  margin-bottom: 0;
}
.cid-uOXtkv06dM .navbar-nav {
  align-items: center;
  justify-content: center;
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  overflow: visible;
}
@media (min-width: 992px) {
  .cid-uOXtkv06dM .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uOXtkv06dM .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uOXtkv06dM .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uOXtkv06dM .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uOXtkv06dM .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uOXtkv06dM .nav-dropdown .dropdown-item {
  font-weight: 400;
  opacity: 1;
  z-index: 9999;
}
.cid-uOXtkv06dM .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInFromRight 0.8s ease-out forwards;
  animation-delay: 0.9s;
}
.cid-uOXtkv06dM .nav-dropdown .link {
  font-weight: 400;
  opacity: 1;
  z-index: 9999;
}
.cid-uOXtkv06dM .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uOXtkv06dM .content-right-side {
  text-align: center;
}
.cid-uOXtkv06dM .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uOXtkv06dM .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uOXtkv06dM .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-uOXtkv06dM .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-uOXtkv06dM .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-uOXtkv06dM .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uOXtkv06dM .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uOXtkv06dM .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uOXtkv06dM .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uOXtkv06dM .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uOXtkv06dM .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uOXtkv06dM .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-uOXtkv06dM .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uOXtkv06dM .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-uOXtkv06dM .navbar {
    display: block;
    padding: 0;
  }
  .cid-uOXtkv06dM .navbar .menu-logo {
    display: flex;
    left: 110px;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uOXtkv06dM .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uOXtkv06dM .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uOXtkv06dM .navbar-toggler {
    display: none;
  }
  .cid-uOXtkv06dM .dropdown .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    width: auto;
    min-width: 200px;
  }
}
.cid-uOXtkv06dM .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uOXtkv06dM .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uOXtkv06dM .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uOXtkv06dM .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uOXtkv06dM .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uOXtkv06dM .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uOXtkv06dM .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uOXtkv06dM .dropdown .dropdown-menu {
  opacity: 1;
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uOXtkv06dM .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uOXtkv06dM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  opacity: 1;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOXtkv06dM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOXtkv06dM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uOXtkv06dM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOXtkv06dM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOXtkv06dM .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uOXtkv06dM .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOXtkv06dM .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uOXtkv06dM .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uOXtkv06dM .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uOXtkv06dM .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uOXtkv06dM .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uOXtkv06dM .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uOXtkv06dM button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 0;
  align-self: center;
}
.cid-uOXtkv06dM button.navbar-toggler:focus {
  outline: none;
}
.cid-uOXtkv06dM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOXtkv06dM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOXtkv06dM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOXtkv06dM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOXtkv06dM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOXtkv06dM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOXtkv06dM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOXtkv06dM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOXtkv06dM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOXtkv06dM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOXtkv06dM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOXtkv06dM .collapsed .btn {
  display: flex;
}
.cid-uOXtkv06dM .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uOXtkv06dM .collapsed .navbar-collapse.collapsing,
.cid-uOXtkv06dM .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uOXtkv06dM .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uOXtkv06dM .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uOXtkv06dM .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uOXtkv06dM .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uOXtkv06dM .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uOXtkv06dM .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uOXtkv06dM .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uOXtkv06dM .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uOXtkv06dM .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uOXtkv06dM .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uOXtkv06dM .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uOXtkv06dM .collapsed button.navbar-toggler {
  display: block;
}
.cid-uOXtkv06dM .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uOXtkv06dM .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uOXtkv06dM .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  border-radius: 0em 0em 2em 2em;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uOXtkv06dM .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uOXtkv06dM .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uOXtkv06dM .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uOXtkv06dM .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-uOXtkv06dM .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    z-index: 1051;
  }
  .cid-uOXtkv06dM .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 100%;
  }
  .cid-uOXtkv06dM .navbar-collapse {
    padding-bottom: 0.5rem;
    display: none !important;
    padding-right: 0 !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000000;
    padding-top: 0.5rem;
    border-radius: 0 0 2em 2em;
    -webkit-box-shadow: 10px 10px 15px #000000;
    box-shadow: 10px 10px 15px #000000;
    z-index: 1050;
  }
  .cid-uOXtkv06dM .navbar-collapse.collapsing,
  .cid-uOXtkv06dM .navbar-collapse.show {
    display: block !important;
  }
  .cid-uOXtkv06dM .navbar-collapse.collapsing .navbar-nav,
  .cid-uOXtkv06dM .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uOXtkv06dM .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uOXtkv06dM .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uOXtkv06dM .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uOXtkv06dM .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uOXtkv06dM .navbar-collapse.collapsing .navbar-buttons,
  .cid-uOXtkv06dM .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uOXtkv06dM .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uOXtkv06dM .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uOXtkv06dM img {
    height: 3.8rem !important;
  }
  .cid-uOXtkv06dM .btn {
    display: flex;
  }
  .cid-uOXtkv06dM button.navbar-toggler {
    display: block;
  }
  .cid-uOXtkv06dM .navbar-brand {
    margin-left: 0 !important;
    margin-top: 0;
  }
  .cid-uOXtkv06dM .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uOXtkv06dM .dropdown {
    transition: all 0.3s ease;
  }
  .cid-uOXtkv06dM .dropdown .dropdown-menu {
    width: 100%;
    opcaity: 1;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uOXtkv06dM .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uOXtkv06dM .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uOXtkv06dM .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uOXtkv06dM .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uOXtkv06dM .dropdown .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
  }
  .cid-uOXtkv06dM .navbar {
    flex-wrap: nowrap;
    padding: 0.5rem;
  }
  .cid-uOXtkv06dM .menu-logo {
    display: flex !important;
    order: 0;
  }
  .cid-uOXtkv06dM .navbar-toggler {
    order: 1;
  }
  .cid-uOXtkv06dM .navbar-nav {
    flex-direction: column;
    align-items: center;
  }
  .cid-uOXtkv06dM .nav-item {
    width: 100%;
    text-align: center;
  }
  .cid-uOXtkv06dM .navbar.bg-color.transparent .navbar-collapse {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .cid-uOXtkv06dM .navbar-collapse.show .nav-item,
  .cid-uOXtkv06dM .navbar-collapse.collapsing .nav-item {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInFromRightMobile 0.6s ease-out forwards;
  }
  .cid-uOXtkv06dM .navbar-collapse.show .nav-item:nth-child(1),
  .cid-uOXtkv06dM .navbar-collapse.collapsing .nav-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  .cid-uOXtkv06dM .navbar-collapse.show .nav-item:nth-child(2),
  .cid-uOXtkv06dM .navbar-collapse.collapsing .nav-item:nth-child(2) {
    animation-delay: 0.15s;
  }
  .cid-uOXtkv06dM .navbar-collapse.show .nav-item:nth-child(3),
  .cid-uOXtkv06dM .navbar-collapse.collapsing .nav-item:nth-child(3) {
    animation-delay: 0.2s;
  }
  .cid-uOXtkv06dM .navbar-collapse.show .nav-item:nth-child(4),
  .cid-uOXtkv06dM .navbar-collapse.collapsing .nav-item:nth-child(4) {
    animation-delay: 0.25s;
  }
  .cid-uOXtkv06dM .navbar-collapse.show .nav-item:nth-child(5),
  .cid-uOXtkv06dM .navbar-collapse.collapsing .nav-item:nth-child(5) {
    animation-delay: 0.3s;
  }
  .cid-uOXtkv06dM .navbar-collapse.show .navbar-buttons,
  .cid-uOXtkv06dM .navbar-collapse.collapsing .navbar-buttons {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInFromRightMobile 0.6s ease-out forwards;
    animation-delay: 0.4s;
  }
  .cid-uOXtkv06dM .navbar-collapse:not(.show) .nav-item {
    opacity: 0;
    transform: translateX(50px);
    animation: none;
  }
  .cid-uOXtkv06dM .dropdown .dropdown-menu {
    position: relative !important;
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-top: 0;
    background-color: rgba(26, 26, 26, 0.7) !important;
    border-radius: 0 0 1em 1em;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .cid-uOXtkv06dM .dropdown.open > .dropdown-menu {
    position: relative !important;
    opacity: 1;
    height: auto;
    padding: 1rem 0;
    visibility: visible;
    margin-top: 0.5rem;
  }
  .cid-uOXtkv06dM .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .cid-uOXtkv06dM .dropdown .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
  }
  .cid-uOXtkv06dM .dropdown .dropdown-menu .dropdown-item:hover,
  .cid-uOXtkv06dM .dropdown .dropdown-menu .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
  }
  .cid-uOXtkv06dM .nav-item.dropdown {
    margin-bottom: 0;
  }
  .cid-uOXtkv06dM .navbar-collapse.show .dropdown-menu .dropdown-item,
  .cid-uOXtkv06dM .navbar-collapse.collapsing .dropdown-menu .dropdown-item {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInFromRightMobile 0.4s ease-out forwards;
  }
  .cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(1) {
    animation-delay: 0.05s;
  }
  .cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(2) {
    animation-delay: 0.1s;
  }
  .cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(3) {
    animation-delay: 0.15s;
  }
  .cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(4) {
    animation-delay: 0.2s;
  }
  .cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(5) {
    animation-delay: 0.25s;
  }
  .cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(6) {
    animation-delay: 0.3s;
  }
  .cid-uOXtkv06dM .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  .cid-uOXtkv06dM .dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
.cid-uOXtkv06dM .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  opcity: 1;
  opacity: 1;
}
.cid-uOXtkv06dM .nav-link:focus {
  outline: none;
  text-align: center;
}
.cid-uOXtkv06dM .navbar-toggler {
  position: relative;
}
.cid-uOXtkv06dM .dropdown-item.active,
.cid-uOXtkv06dM .dropdown-item:active {
  color: initial;
}
.cid-uOXtkv06dM .widget-title,
.cid-uOXtkv06dM .widget-icon {
  color: #ffffff;
  text-align: center;
}
.cid-uOXtkv06dM .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-uOXtkv06dM .menu-logo {
    display: none;
  }
  .cid-uOXtkv06dM .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-uOXtkv06dM .nav-item:before {
    content: none;
  }
  .cid-uOXtkv06dM .navbar {
    padding: 0;
    opacity: 1;
  }
  .cid-uOXtkv06dM .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uOXtkv06dM button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
@media (max-width: 768px) {
  .cid-uOXtkv06dM .menu-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    position: relative;
  }
  .cid-uOXtkv06dM .menu-logo {
    display: flex !important;
    justify-content: center;
    flex-grow: 1;
    order: 1;
  }
  .cid-uOXtkv06dM .navbar-brand {
    display: flex;
    justify-content: center;
    width: auto;
    margin: 0;
  }
  .cid-uOXtkv06dM .navbar-brand img {
    max-height: 60px;
    width: auto;
  }
  .cid-uOXtkv06dM .navbar-toggler {
    order: 2;
    margin-left: auto;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .cid-uOXtkv06dM .collapse.navbar-collapse {
    flex-grow: 1;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .cid-uOXtkv06dM .navbar-nav {
    width: 100%;
    z-index: 2;
  }
  .cid-uOXtkv06dM .menu-content-top,
  .cid-uOXtkv06dM .menu-content-right {
    z-index: 0;
  }
}
.cid-uOXtkv06dM .navbar.bg-color.transparent {
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cid-uOXtkv06dM .navbar.bg-color.transparent .dropdown-menu {
  background-color: rgba(26, 26, 26, 0.7) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.cid-uOXtkv06dM .navbar.bg-color.transparent .nav-link,
.cid-uOXtkv06dM .navbar.bg-color.transparent .dropdown-item,
.cid-uOXtkv06dM .navbar.bg-color.transparent .brand-name {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  60% {
    transform: translateX(-10px);
    opacity: 0.8;
  }
  80% {
    transform: translateX(5px);
    opacity: 0.9;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInFromRightMobile {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }
  60% {
    transform: translateX(-3px);
    opacity: 0.8;
  }
  80% {
    transform: translateX(1px);
    opacity: 0.9;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.cid-uOXtkv06dM .navbar-nav .nav-item {
  opacity: 0;
  transform: translateX(100px);
  animation: slideInFromRight 0.8s ease-out forwards;
}
.cid-uOXtkv06dM .navbar-nav .nav-item:nth-child(1) {
  animation-delay: 0.1s;
}
.cid-uOXtkv06dM .navbar-nav .nav-item:nth-child(2) {
  animation-delay: 0.2s;
}
.cid-uOXtkv06dM .navbar-nav .nav-item:nth-child(3) {
  animation-delay: 0.3s;
}
.cid-uOXtkv06dM .navbar-nav .nav-item:nth-child(4) {
  animation-delay: 0.4s;
}
.cid-uOXtkv06dM .navbar-nav .nav-item:nth-child(5) {
  animation-delay: 0.5s;
}
.cid-uOXtkv06dM .navbar-nav .nav-item:nth-child(6) {
  animation-delay: 0.6s;
}
.cid-uOXtkv06dM .navbar-nav .nav-item:nth-child(7) {
  animation-delay: 0.7s;
}
.cid-uOXtkv06dM .navbar-nav .nav-item:nth-child(8) {
  animation-delay: 0.8s;
}
.cid-uOXtkv06dM .dropdown-menu .dropdown-item {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInFromRight 0.6s ease-out forwards;
}
.cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(1) {
  animation-delay: 0.1s;
}
.cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(2) {
  animation-delay: 0.2s;
}
.cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(3) {
  animation-delay: 0.3s;
}
.cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(4) {
  animation-delay: 0.4s;
}
.cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(5) {
  animation-delay: 0.5s;
}
.cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(6) {
  animation-delay: 0.6s;
}
.cid-uOXtkv06dM .dropdown-menu .dropdown-item:nth-child(7) {
  animation-delay: 0.7s;
}
.cid-uOXtkv06dM .nav-item .nav-link {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-uOXtkv06dM .nav-item .nav-link:hover {
  transform: scale(1.05) translateX(-5px);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cid-uOXtkv06dM .dropdown.open .dropdown-menu {
  animation: dropdownSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
@keyframes dropdownSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-10px) translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
.cid-uOXtkv06dM .navbar-nav .nav-item.no-animate {
  animation: none;
  opacity: 1;
  transform: none;
}
.cid-uOXqy9n2kc {
  padding-top: 0;
  padding-bottom: 0 !important;
  background-color: #29445c;
  text-shadow: 2px 2px 5px black;
}
.cid-uOXqy9n2kc .carousel {
  border-radius: 0;
  width: 100%;
}
.cid-uOXqy9n2kc .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uOXqy9n2kc .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uOXqy9n2kc .carousel-caption {
  position: absolute;
  z-index: 20;
  pointer-events: auto;
  left: 0;
  bottom: 20%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 400px;
  max-width: 800px;
  text-align: center;
  right: 0;
  margin: 0 auto;
}
.cid-uOXqy9n2kc .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uOXqy9n2kc .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uOXqy9n2kc .carousel-control:hover {
  background: #005180;
  color: #fff;
  opacity: 1;
}
.cid-uOXqy9n2kc .item-wrapper {
  width: 100%;
  position: relative;
}
.cid-uOXqy9n2kc .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uOXqy9n2kc .carousel-control {
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: 0rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOXqy9n2kc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOXqy9n2kc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOXqy9n2kc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOXqy9n2kc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
  z-index: 50;
}
.cid-uOXqy9n2kc .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOXqy9n2kc .carousel-indicators li.active,
.cid-uOXqy9n2kc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOXqy9n2kc .carousel-indicators li::after,
.cid-uOXqy9n2kc .carousel-indicators li::before {
  content: none;
}
.cid-uOXqy9n2kc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOXqy9n2kc .carousel-indicators .logo {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: scale(1) !important;
    z-index: 999;
    animation: zoomLogo 3s ease-in-out forwards;
  }
}
.cid-uOXqy9n2kc .logo img {
  top: 0px;
  transform: none !important;
  transform-origin: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none !important;
  width: 350px;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.cid-uOXqy9n2kc .glass {
  text-shadow: 2px 2px 5px black;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 15px 10px;
  max-width: 800px;
  min-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
  top: -420px;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0);
  animation: zoomInAnimation 1.5s ease-out forwards;
  border-radius: 35px;
  position: relative;
  z-index: 25 !important;
  pointer-events: none !important;
  left: 0;
  right: 0;
  text-align: center;
  backdrop-filter: blur(0.8px);
  -webkit-backdrop-filter: blur(0.8px);
  border: 3px solid #ffffff;
}
.cid-uOXqy9n2kc .logo {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  animation: slideInElasticCentered 1.8s ease-out forwards;
  pointer-events: none;
  opacity: 1;
}
@keyframes zoomLogo {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.cid-uOXqy9n2kc .carousel-item-zoom {
  animation: zoom 10s infinite alternate;
  position: relative;
  z-index: 10;
  pointer-events: none;
}
@keyframes tilt3d {
  0% {
    transform: perspective(1200px) rotateY(0deg) scale(1.25);
  }
  25% {
    transform: perspective(1200px) rotateY(2deg) scale(1.25);
  }
  50% {
    transform: perspective(1200px) rotateY(0deg) scale(1.25);
  }
  75% {
    transform: perspective(1200px) rotateY(-2deg) scale(1.25);
  }
  100% {
    transform: perspective(1200px) rotateY(0deg) scale(1.25);
  }
}
.cid-uOXqy9n2kc .carousel .carousel-item img.carousel-item-zoom {
  animation: tilt3d 24s ease-in-out infinite;
  transform-origin: center;
  backface-visibility: hidden;
  perspective: 1200px;
  transform: perspective(1200px) scale(1.15);
}
@media (max-width: 768px) {
  .cid-uOXqy9n2kc .logo {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 999;
    animation: none;
  }
  .cid-uOXqy9n2kc .carousel-control-prev,
  .cid-uOXqy9n2kc .carousel-control-next {
    display: none;
  }
}
@media (max-width: 1024px) {
  .cid-uOXqy9n2kc .logo img {
    position: relative;
    top: -20px;
    transform: scale(1) !important;
    margin-left: auto;
    margin-right: auto;
  }
}
@keyframes zoomInAnimation {
  from {
    opacity: 0;
    transform: scale(1);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }
}
@media (max-width: 767px) {
  .cid-uOXqy9n2kc .glass {
    filter: blur(0px);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    left: 50%;
    opacity: 1;
    transform: translateX(-50%);
    animation: none;
    align-content: center;
    align-items: center;
    width: 100%;
    border-radius: 5px;
    position: relative;
    bottom: 0;
    padding: 15px 10px;
    background-color: rgba(0, 0, 0, 0.4);
    text-shadow: 2px 2px 5px black;
    z-index: 25 !important;
    min-width: 0;
    max-width: 100%;
    margin: 0 auto;
    backdrop-filter: blur(0.8px);
    -webkit-backdrop-filter: blur(0.8px);
    pointer-events: none !important;
  }
  .cid-uOXqy9n2kc .logo {
    top: 30% !important;
    z-index: 999 !important;
    transform: translate(-50%, -50%) scale(0.9) !important;
    position: absolute !important;
    left: 50% !important;
    pointer-events: none !important;
    display: block !important;
  }
  .cid-uOXqy9n2kc .logo img {
    transform: scale(1.5) !important;
    width: 180px !important;
    max-width: 90%;
    height: auto;
  }
  .cid-uOXqy9n2kc .mbr-section-btn {
    z-index: 55 !important;
    margin: 0 auto;
    text-align: center;
    pointer-events: auto !important;
  }
  .cid-uOXqy9n2kc .carousel-item img.carousel-item-zoom {
    pointer-events: none;
  }
  .cid-uOXqy9n2kc .carousel-caption {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: 0;
    max-width: 100%;
    transform: none;
    margin: 0 auto;
    text-align: center;
    top: auto !important;
  }
  .cid-uOXqy9n2kc .mbr-section-subtitle,
  .cid-uOXqy9n2kc .mbr-section-text {
    text-align: center;
    margin: 0 auto;
  }
  .cid-uOXqy9n2kc .mbr-section-btn a {
    margin: 5px !important;
    display: inline-block;
  }
  .cid-uOXqy9n2kc .btn,
  .cid-uOXqy9n2kc a.btn,
  .cid-uOXqy9n2kc button.btn,
  .cid-uOXqy9n2kc [class*="-gutters"],
  .cid-uOXqy9n2kc a[href*="GALLERY"],
  .cid-uOXqy9n2kc a[href*="QUOTE"] {
    padding: 4px 8px !important;
  }
  .cid-uOXqy9n2kc .mbr-section-subtitle {
    z-index: 45 !important;
    pointer-events: auto !important;
  }
  .cid-uOXqy9n2kc .mbr-section-text {
    z-index: 45 !important;
    pointer-events: auto !important;
  }
  .cid-uOXqy9n2kc .glass .mbr-section-text {
    pointer-events: auto !important;
    z-index: 50 !important;
    cursor: text;
  }
  .cid-uOXqy9n2kc .glass .mbr-section-subtitle {
    pointer-events: auto !important;
    z-index: 50 !important;
    cursor: text;
  }
}
.cid-uOXqy9n2kc .btn {
  top: 0;
  right: 0px;
  padding: 9px;
  position: relative;
  text-shadow: 0px 0px 0px gray;
  border-radius: 1em 1em 1em 1em;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.cid-uOXqy9n2kc .btn:hover {
  top: 3px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}
.cid-uOXqy9n2kc .mbr-section-btn {
  position: relative;
  z-index: 35;
  pointer-events: auto;
  margin: 0 auto;
  text-align: center;
}
.cid-uOXqy9n2kc .btn-primary-outline,
.cid-uOXqy9n2kc .btn-danger-outline,
.cid-uOXqy9n2kc .btn-secondary {
  position: relative;
  z-index: 40;
  pointer-events: auto;
  display: inline-block;
}
.cid-uOXqy9n2kc .carousel-item {
  position: relative;
  overflow: hidden;
  height: 100vh !important;
}
.cid-uOXqy9n2kc .carousel-control-prev,
.cid-uOXqy9n2kc .carousel-control-next {
  z-index: 50;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOXqy9n2kc .carousel-caption {
    bottom: 15%;
  }
  .cid-uOXqy9n2kc .glass {
    width: 90%;
    max-width: 600px;
  }
  .cid-uOXqy9n2kc .logo {
    top: 35%;
  }
}
@media (max-width: 480px) {
  .cid-uOXqy9n2kc .logo {
    top: 35% !important;
  }
}
.cid-uOXqy9n2kc .btn,
.cid-uOXqy9n2kc a.btn,
.cid-uOXqy9n2kc button.btn,
.cid-uOXqy9n2kc .leafguard-gutters,
.cid-uOXqy9n2kc .seamless-gutters,
.cid-uOXqy9n2kc .custom-gutters,
.cid-uOXqy9n2kc .gallery,
.cid-uOXqy9n2kc .get-a-free-quote,
.cid-uOXqy9n2kc [class*="-gutters"],
.cid-uOXqy9n2kc a[href*="GALLERY"],
.cid-uOXqy9n2kc a[href*="QUOTE"] {
  padding: 5px 10px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
}
.cid-uOXqy9n2kc a.leafguard-gutters,
.cid-uOXqy9n2kc a.seamless-gutters,
.cid-uOXqy9n2kc a.custom-gutters,
.cid-uOXqy9n2kc a.gallery,
.cid-uOXqy9n2kc a.get-a-free-quote {
  padding: 5px 8px !important;
}
.cid-uOXqy9n2kc .slider1 {
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0 !important;
  position: relative;
  background-color: transparent !important;
}
.cid-uOXqy9n2kc #sliderId,
.cid-uOXqy9n2kc .carousel {
  margin-bottom: 0;
  height: auto !important;
}
.cid-uOXqy9n2kc .carousel-item img.carousel-item-zoom {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
.cid-uOXqy9n2kc .mbr-section-subtitle {
  position: relative;
  z-index: 40 !important;
  pointer-events: auto !important;
}
.cid-uOXqy9n2kc .mbr-section-text {
  position: relative;
  z-index: 40 !important;
  pointer-events: auto !important;
}
.cid-uOXqy9n2kc .glass * {
  position: relative;
  z-index: inherit;
  pointer-events: auto !important;
}
.cid-uOXqy9n2kc .glass .mbr-section-text {
  pointer-events: auto !important;
  position: relative;
  z-index: 50 !important;
  cursor: text;
}
.cid-uOXqy9n2kc .glass .mbr-section-subtitle {
  pointer-events: auto !important;
  position: relative;
  z-index: 50 !important;
  cursor: text;
}
.cid-uOXqy9n2kc .glass .mbr-section-btn {
  pointer-events: auto !important;
  position: relative;
  z-index: 55 !important;
}
.cid-uOXqy9n2kc .glass .mbr-section-btn a {
  pointer-events: auto !important;
}
@keyframes slideInElastic {
  0% {
    transform: translateX(-200%) scale(0.6);
    opacity: 0;
  }
  60% {
    transform: translateX(30%) scale(1.1);
    opacity: 1;
  }
  80% {
    transform: translateX(-10%) scale(0.95);
  }
  100% {
    transform: translateX(0%) scale(1);
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .cid-uOXqy9n2kc .logo {
    display: block;
  }
}
@keyframes slideInElasticCentered {
  0% {
    transform: translate(-250%, -50%) scale(0.6);
    opacity: 0;
  }
  60% {
    transform: translate(-20%, -50%) scale(1.1);
    opacity: 1;
  }
  80% {
    transform: translate(-40%, -50%) scale(0.95);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.cid-uQQFzGqvjD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQQFzGqvjD .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQQFzGqvjD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQFzGqvjD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQFzGqvjD .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQQFzGqvjD .content-wrap .card {
  justify-content: space-between;
}
.cid-uQQFzGqvjD .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQQFzGqvjD .content-wrapper {
    padding: 0;
  }
}
.cid-uQQFzGqvjD .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQQFzGqvjD .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQQFzGqvjD .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQQFzGqvjD .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQQFzGqvjD .mbr-desc,
.cid-uQQFzGqvjD .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQQFlUaRf6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-curtis-adams-1694007.webp");
  background-attachment: fixed;
  background-position: center center;
  animation: phoneMove 40s ease-in-out infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQFlUaRf6 {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQFlUaRf6 {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQFlUaRf6 {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
  }
}
.cid-uQQFlUaRf6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQFlUaRf6 .mbr-fallback-image {
  display: block;
  background-size: 115%;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  animation: phoneMove 40s ease-in-out infinite;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQFlUaRf6 .mbr-fallback-image {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQFlUaRf6 .mbr-fallback-image {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQFlUaRf6 .mbr-fallback-image {
    background-size: cover;
    background-position: center center;
    animation: none;
    transition: none;
    will-change: auto;
  }
}
@media (max-width: 992px) {
  .cid-uQQFlUaRf6 .container {
    padding: 0 20px;
  }
}
.cid-uQQFlUaRf6 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uQQFlUaRf6 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uQQFlUaRf6 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQFlUaRf6 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQQFlUaRf6 .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQFlUaRf6 .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uQQFlUaRf6 .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-uQQFlUaRf6 .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQQFlUaRf6 .image-wrapper img {
    height: 300px;
  }
}
.cid-uQQFlUaRf6 .mbr-section-title {
  color: #c2b299;
}
.cid-uQQFlUaRf6 .mbr-text {
  color: #ededed;
}
.cid-uQQFlUaRf6 img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -o-transition: 1s ease;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease, border-radius 0.4s ease, box-shadow 0.6s ease;
  border-radius: 1.5em;
  top: 0px;
  right: 0px;
  -webkit-box-shadow: 10px 10px 5px #000;
  border: 2px solid white;
  display: block;
  max-height: 80vh;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cid-uQQFlUaRf6 img:hover {
  transform: scale(1.03);
  filter: brightness(1.15) saturate(1.1);
  border-radius: 0.5em;
  -webkit-box-shadow: 15px 15px 55px #000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.cid-uQQFlUaRf6 .glass {
  text-shadow: 2px 2px 5px black;
  border-radius: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 10px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 2px solid light-gray;
}
.cid-uQQFlUaRf6 .mbr-section-title,
.cid-uQQFlUaRf6 .mbr-section-btn {
  text-align: center;
  color: #ededed;
}
.cid-uQQFlUaRf6 .btn {
  top: 0;
  right: 0px;
  padding: 5px;
  position: relative;
  text-shadow: 0px 0px 0px gray;
  border-radius: 1em 1em 1em 1em;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.cid-uQQFlUaRf6 .btn:hover {
  top: 3px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}
.cid-uQQFlUaRf6 section.bg-animate {
  animation: phoneMove 45s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
  transform-style: preserve-3d;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@media (min-width: 1920px) {
  .cid-uQQFlUaRf6 section.bg-animate {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQFlUaRf6 section.bg-animate {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQFlUaRf6 section.bg-animate {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
    transform: none;
    perspective: none;
    transform-style: flat;
    will-change: background-position;
  }
}
@keyframes phoneMove {
  0%,
  100% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
  25% {
    background-position: 51% 49%;
    transform: scale(1.05) perspective(800px) rotateY(1deg);
  }
  50% {
    background-position: 49% 51%;
    transform: scale(1.05) perspective(800px) rotateY(-1deg);
  }
  75% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
}
@keyframes phoneMoveSimple {
  0%,
  100% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 51% 49%;
  }
  50% {
    background-position: 49% 51%;
  }
  75% {
    background-position: 50% 49%;
  }
}
.cid-uQQLbn37tJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQQLbn37tJ .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQQLbn37tJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQLbn37tJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQLbn37tJ .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQQLbn37tJ .content-wrap .card {
  justify-content: space-between;
}
.cid-uQQLbn37tJ .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQQLbn37tJ .content-wrapper {
    padding: 0;
  }
}
.cid-uQQLbn37tJ .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQQLbn37tJ .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQQLbn37tJ .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQQLbn37tJ .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQQLbn37tJ .mbr-desc,
.cid-uQQLbn37tJ .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQQL9QJPCA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/stormdamage.webp");
  background-attachment: fixed;
  background-position: center center;
  animation: phoneMove 40s ease-in-out infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQL9QJPCA {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQL9QJPCA {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQL9QJPCA {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
  }
}
.cid-uQQL9QJPCA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQL9QJPCA .mbr-fallback-image {
  display: block;
  background-size: 115%;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  animation: phoneMove 40s ease-in-out infinite;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQL9QJPCA .mbr-fallback-image {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQL9QJPCA .mbr-fallback-image {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQL9QJPCA .mbr-fallback-image {
    background-size: cover;
    background-position: center center;
    animation: none;
    transition: none;
    will-change: auto;
  }
}
@media (max-width: 992px) {
  .cid-uQQL9QJPCA .container {
    padding: 0 20px;
  }
}
.cid-uQQL9QJPCA .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uQQL9QJPCA .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uQQL9QJPCA .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQL9QJPCA .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQQL9QJPCA .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQL9QJPCA .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uQQL9QJPCA .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-uQQL9QJPCA .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQQL9QJPCA .image-wrapper img {
    height: 300px;
  }
}
.cid-uQQL9QJPCA .mbr-section-title {
  color: #c2b299;
}
.cid-uQQL9QJPCA .mbr-text {
  color: #ededed;
}
.cid-uQQL9QJPCA img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -o-transition: 1s ease;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease, border-radius 0.4s ease, box-shadow 0.6s ease;
  border-radius: 1.5em;
  top: 0px;
  right: 0px;
  -webkit-box-shadow: 10px 10px 5px #000;
  border: 2px solid white;
  display: block;
  max-height: 80vh;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cid-uQQL9QJPCA img:hover {
  transform: scale(1.03);
  filter: brightness(1.15) saturate(1.1);
  border-radius: 0.5em;
  -webkit-box-shadow: 15px 15px 55px #000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.cid-uQQL9QJPCA .glass {
  text-shadow: 2px 2px 5px black;
  border-radius: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 10px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 2px solid light-gray;
}
.cid-uQQL9QJPCA .mbr-section-title,
.cid-uQQL9QJPCA .mbr-section-btn {
  text-align: center;
  color: #ededed;
}
.cid-uQQL9QJPCA .btn {
  top: 0;
  right: 0px;
  padding: 5px;
  position: relative;
  text-shadow: 0px 0px 0px gray;
  border-radius: 1em 1em 1em 1em;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.cid-uQQL9QJPCA .btn:hover {
  top: 3px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}
.cid-uQQL9QJPCA section.bg-animate {
  animation: phoneMove 45s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
  transform-style: preserve-3d;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@media (min-width: 1920px) {
  .cid-uQQL9QJPCA section.bg-animate {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQL9QJPCA section.bg-animate {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQL9QJPCA section.bg-animate {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
    transform: none;
    perspective: none;
    transform-style: flat;
    will-change: background-position;
  }
}
@keyframes phoneMove {
  0%,
  100% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
  25% {
    background-position: 51% 49%;
    transform: scale(1.05) perspective(800px) rotateY(1deg);
  }
  50% {
    background-position: 49% 51%;
    transform: scale(1.05) perspective(800px) rotateY(-1deg);
  }
  75% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
}
@keyframes phoneMoveSimple {
  0%,
  100% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 51% 49%;
  }
  50% {
    background-position: 49% 51%;
  }
  75% {
    background-position: 50% 49%;
  }
}
.cid-uQQN8kTj8K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQQN8kTj8K .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQQN8kTj8K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQN8kTj8K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQN8kTj8K .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQQN8kTj8K .content-wrap .card {
  justify-content: space-between;
}
.cid-uQQN8kTj8K .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQQN8kTj8K .content-wrapper {
    padding: 0;
  }
}
.cid-uQQN8kTj8K .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQQN8kTj8K .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQQN8kTj8K .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQQN8kTj8K .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQQN8kTj8K .mbr-desc,
.cid-uQQN8kTj8K .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQQN7xqVVN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-curtis-adams-1694008.webp");
  background-attachment: fixed;
  background-position: center center;
  animation: phoneMove 40s ease-in-out infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQN7xqVVN {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQN7xqVVN {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQN7xqVVN {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
  }
}
.cid-uQQN7xqVVN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQN7xqVVN .mbr-fallback-image {
  display: block;
  background-size: 115%;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  animation: phoneMove 40s ease-in-out infinite;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQN7xqVVN .mbr-fallback-image {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQN7xqVVN .mbr-fallback-image {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQN7xqVVN .mbr-fallback-image {
    background-size: cover;
    background-position: center center;
    animation: none;
    transition: none;
    will-change: auto;
  }
}
@media (max-width: 992px) {
  .cid-uQQN7xqVVN .container {
    padding: 0 20px;
  }
}
.cid-uQQN7xqVVN .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uQQN7xqVVN .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uQQN7xqVVN .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQN7xqVVN .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQQN7xqVVN .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQN7xqVVN .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uQQN7xqVVN .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-uQQN7xqVVN .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQQN7xqVVN .image-wrapper img {
    height: 300px;
  }
}
.cid-uQQN7xqVVN .mbr-section-title {
  color: #c2b299;
}
.cid-uQQN7xqVVN .mbr-text {
  color: #ededed;
}
.cid-uQQN7xqVVN img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -o-transition: 1s ease;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease, border-radius 0.4s ease, box-shadow 0.6s ease;
  border-radius: 1.5em;
  top: 0px;
  right: 0px;
  -webkit-box-shadow: 10px 10px 5px #000;
  border: 2px solid white;
  display: block;
  max-height: 80vh;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cid-uQQN7xqVVN img:hover {
  transform: scale(1.03);
  filter: brightness(1.15) saturate(1.1);
  border-radius: 0.5em;
  -webkit-box-shadow: 15px 15px 55px #000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.cid-uQQN7xqVVN .glass {
  text-shadow: 2px 2px 5px black;
  border-radius: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 10px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 2px solid light-gray;
}
.cid-uQQN7xqVVN .mbr-section-title,
.cid-uQQN7xqVVN .mbr-section-btn {
  text-align: center;
  color: #ededed;
}
.cid-uQQN7xqVVN .btn {
  top: 0;
  right: 0px;
  padding: 5px;
  position: relative;
  text-shadow: 0px 0px 0px gray;
  border-radius: 1em 1em 1em 1em;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.cid-uQQN7xqVVN .btn:hover {
  top: 3px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}
.cid-uQQN7xqVVN section.bg-animate {
  animation: phoneMove 45s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
  transform-style: preserve-3d;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@media (min-width: 1920px) {
  .cid-uQQN7xqVVN section.bg-animate {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQN7xqVVN section.bg-animate {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQN7xqVVN section.bg-animate {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
    transform: none;
    perspective: none;
    transform-style: flat;
    will-change: background-position;
  }
}
@keyframes phoneMove {
  0%,
  100% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
  25% {
    background-position: 51% 49%;
    transform: scale(1.05) perspective(800px) rotateY(1deg);
  }
  50% {
    background-position: 49% 51%;
    transform: scale(1.05) perspective(800px) rotateY(-1deg);
  }
  75% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
}
@keyframes phoneMoveSimple {
  0%,
  100% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 51% 49%;
  }
  50% {
    background-position: 49% 51%;
  }
  75% {
    background-position: 50% 49%;
  }
}
.cid-uQQNsNp5qd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQQNsNp5qd .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQQNsNp5qd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQNsNp5qd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQNsNp5qd .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQQNsNp5qd .content-wrap .card {
  justify-content: space-between;
}
.cid-uQQNsNp5qd .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQQNsNp5qd .content-wrapper {
    padding: 0;
  }
}
.cid-uQQNsNp5qd .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQQNsNp5qd .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQQNsNp5qd .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQQNsNp5qd .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQQNsNp5qd .mbr-desc,
.cid-uQQNsNp5qd .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQQNsiionJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-curtis-adams-1694009.webp");
  background-attachment: fixed;
  background-position: center center;
  animation: phoneMove 40s ease-in-out infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQNsiionJ {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQNsiionJ {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQNsiionJ {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
  }
}
.cid-uQQNsiionJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQNsiionJ .mbr-fallback-image {
  display: block;
  background-size: 115%;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  animation: phoneMove 40s ease-in-out infinite;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQNsiionJ .mbr-fallback-image {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQNsiionJ .mbr-fallback-image {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQNsiionJ .mbr-fallback-image {
    background-size: cover;
    background-position: center center;
    animation: none;
    transition: none;
    will-change: auto;
  }
}
@media (max-width: 992px) {
  .cid-uQQNsiionJ .container {
    padding: 0 20px;
  }
}
.cid-uQQNsiionJ .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uQQNsiionJ .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uQQNsiionJ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQNsiionJ .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQQNsiionJ .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQNsiionJ .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uQQNsiionJ .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-uQQNsiionJ .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQQNsiionJ .image-wrapper img {
    height: 300px;
  }
}
.cid-uQQNsiionJ .mbr-section-title {
  color: #c2b299;
}
.cid-uQQNsiionJ .mbr-text {
  color: #ededed;
}
.cid-uQQNsiionJ img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -o-transition: 1s ease;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease, border-radius 0.4s ease, box-shadow 0.6s ease;
  border-radius: 1.5em;
  top: 0px;
  right: 0px;
  -webkit-box-shadow: 10px 10px 5px #000;
  border: 2px solid white;
  display: block;
  max-height: 80vh;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cid-uQQNsiionJ img:hover {
  transform: scale(1.03);
  filter: brightness(1.15) saturate(1.1);
  border-radius: 0.5em;
  -webkit-box-shadow: 15px 15px 55px #000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.cid-uQQNsiionJ .glass {
  text-shadow: 2px 2px 5px black;
  border-radius: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 10px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 2px solid light-gray;
}
.cid-uQQNsiionJ .mbr-section-title,
.cid-uQQNsiionJ .mbr-section-btn {
  text-align: center;
  color: #ededed;
}
.cid-uQQNsiionJ .btn {
  top: 0;
  right: 0px;
  padding: 5px;
  position: relative;
  text-shadow: 0px 0px 0px gray;
  border-radius: 1em 1em 1em 1em;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.cid-uQQNsiionJ .btn:hover {
  top: 3px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}
.cid-uQQNsiionJ section.bg-animate {
  animation: phoneMove 45s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
  transform-style: preserve-3d;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@media (min-width: 1920px) {
  .cid-uQQNsiionJ section.bg-animate {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQNsiionJ section.bg-animate {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQNsiionJ section.bg-animate {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
    transform: none;
    perspective: none;
    transform-style: flat;
    will-change: background-position;
  }
}
@keyframes phoneMove {
  0%,
  100% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
  25% {
    background-position: 51% 49%;
    transform: scale(1.05) perspective(800px) rotateY(1deg);
  }
  50% {
    background-position: 49% 51%;
    transform: scale(1.05) perspective(800px) rotateY(-1deg);
  }
  75% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
}
@keyframes phoneMoveSimple {
  0%,
  100% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 51% 49%;
  }
  50% {
    background-position: 49% 51%;
  }
  75% {
    background-position: 50% 49%;
  }
}
.cid-uQQNEcUZWs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQQNEcUZWs .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQQNEcUZWs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQNEcUZWs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQNEcUZWs .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQQNEcUZWs .content-wrap .card {
  justify-content: space-between;
}
.cid-uQQNEcUZWs .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQQNEcUZWs .content-wrapper {
    padding: 0;
  }
}
.cid-uQQNEcUZWs .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQQNEcUZWs .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQQNEcUZWs .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQQNEcUZWs .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQQNEcUZWs .mbr-desc,
.cid-uQQNEcUZWs .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQQNDF0mCr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-pixabay-209274.webp");
  background-attachment: fixed;
  background-position: center center;
  animation: phoneMove 40s ease-in-out infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQNDF0mCr {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQNDF0mCr {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQNDF0mCr {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
  }
}
.cid-uQQNDF0mCr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQNDF0mCr .mbr-fallback-image {
  display: block;
  background-size: 115%;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  animation: phoneMove 40s ease-in-out infinite;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQNDF0mCr .mbr-fallback-image {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQNDF0mCr .mbr-fallback-image {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQNDF0mCr .mbr-fallback-image {
    background-size: cover;
    background-position: center center;
    animation: none;
    transition: none;
    will-change: auto;
  }
}
@media (max-width: 992px) {
  .cid-uQQNDF0mCr .container {
    padding: 0 20px;
  }
}
.cid-uQQNDF0mCr .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uQQNDF0mCr .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uQQNDF0mCr .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQNDF0mCr .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQQNDF0mCr .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQNDF0mCr .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uQQNDF0mCr .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-uQQNDF0mCr .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQQNDF0mCr .image-wrapper img {
    height: 300px;
  }
}
.cid-uQQNDF0mCr .mbr-section-title {
  color: #c2b299;
}
.cid-uQQNDF0mCr .mbr-text {
  color: #ededed;
}
.cid-uQQNDF0mCr img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -o-transition: 1s ease;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease, border-radius 0.4s ease, box-shadow 0.6s ease;
  border-radius: 1.5em;
  top: 0px;
  right: 0px;
  -webkit-box-shadow: 10px 10px 5px #000;
  border: 2px solid white;
  display: block;
  max-height: 80vh;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cid-uQQNDF0mCr img:hover {
  transform: scale(1.03);
  filter: brightness(1.15) saturate(1.1);
  border-radius: 0.5em;
  -webkit-box-shadow: 15px 15px 55px #000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.cid-uQQNDF0mCr .glass {
  text-shadow: 2px 2px 5px black;
  border-radius: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 10px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 2px solid light-gray;
}
.cid-uQQNDF0mCr .mbr-section-title,
.cid-uQQNDF0mCr .mbr-section-btn {
  text-align: center;
  color: #ededed;
}
.cid-uQQNDF0mCr .btn {
  top: 0;
  right: 0px;
  padding: 5px;
  position: relative;
  text-shadow: 0px 0px 0px gray;
  border-radius: 1em 1em 1em 1em;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.cid-uQQNDF0mCr .btn:hover {
  top: 3px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}
.cid-uQQNDF0mCr section.bg-animate {
  animation: phoneMove 45s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
  transform-style: preserve-3d;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@media (min-width: 1920px) {
  .cid-uQQNDF0mCr section.bg-animate {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQNDF0mCr section.bg-animate {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQNDF0mCr section.bg-animate {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
    transform: none;
    perspective: none;
    transform-style: flat;
    will-change: background-position;
  }
}
@keyframes phoneMove {
  0%,
  100% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
  25% {
    background-position: 51% 49%;
    transform: scale(1.05) perspective(800px) rotateY(1deg);
  }
  50% {
    background-position: 49% 51%;
    transform: scale(1.05) perspective(800px) rotateY(-1deg);
  }
  75% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
}
@keyframes phoneMoveSimple {
  0%,
  100% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 51% 49%;
  }
  50% {
    background-position: 49% 51%;
  }
  75% {
    background-position: 50% 49%;
  }
}
.cid-uQQNWsVK46 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQQNWsVK46 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQQNWsVK46 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQNWsVK46 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQNWsVK46 .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQQNWsVK46 .content-wrap .card {
  justify-content: space-between;
}
.cid-uQQNWsVK46 .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQQNWsVK46 .content-wrapper {
    padding: 0;
  }
}
.cid-uQQNWsVK46 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQQNWsVK46 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQQNWsVK46 .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQQNWsVK46 .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQQNWsVK46 .mbr-desc,
.cid-uQQNWsVK46 .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQQNVZQgU2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-curtis-adams-1694010.webp");
  background-attachment: fixed;
  background-position: center center;
  animation: phoneMove 40s ease-in-out infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQNVZQgU2 {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQNVZQgU2 {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQNVZQgU2 {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
  }
}
.cid-uQQNVZQgU2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQNVZQgU2 .mbr-fallback-image {
  display: block;
  background-size: 115%;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  animation: phoneMove 40s ease-in-out infinite;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQNVZQgU2 .mbr-fallback-image {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQNVZQgU2 .mbr-fallback-image {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQNVZQgU2 .mbr-fallback-image {
    background-size: cover;
    background-position: center center;
    animation: none;
    transition: none;
    will-change: auto;
  }
}
@media (max-width: 992px) {
  .cid-uQQNVZQgU2 .container {
    padding: 0 20px;
  }
}
.cid-uQQNVZQgU2 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uQQNVZQgU2 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uQQNVZQgU2 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQNVZQgU2 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQQNVZQgU2 .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQNVZQgU2 .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uQQNVZQgU2 .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-uQQNVZQgU2 .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQQNVZQgU2 .image-wrapper img {
    height: 300px;
  }
}
.cid-uQQNVZQgU2 .mbr-section-title {
  color: #c2b299;
}
.cid-uQQNVZQgU2 .mbr-text {
  color: #ededed;
}
.cid-uQQNVZQgU2 img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -o-transition: 1s ease;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease, border-radius 0.4s ease, box-shadow 0.6s ease;
  border-radius: 1.5em;
  top: 0px;
  right: 0px;
  -webkit-box-shadow: 10px 10px 5px #000;
  border: 2px solid white;
  display: block;
  max-height: 80vh;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cid-uQQNVZQgU2 img:hover {
  transform: scale(1.03);
  filter: brightness(1.15) saturate(1.1);
  border-radius: 0.5em;
  -webkit-box-shadow: 15px 15px 55px #000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.cid-uQQNVZQgU2 .glass {
  text-shadow: 2px 2px 5px black;
  border-radius: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 10px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 2px solid light-gray;
}
.cid-uQQNVZQgU2 .mbr-section-title,
.cid-uQQNVZQgU2 .mbr-section-btn {
  text-align: center;
  color: #ededed;
}
.cid-uQQNVZQgU2 .btn {
  top: 0;
  right: 0px;
  padding: 5px;
  position: relative;
  text-shadow: 0px 0px 0px gray;
  border-radius: 1em 1em 1em 1em;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.cid-uQQNVZQgU2 .btn:hover {
  top: 3px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}
.cid-uQQNVZQgU2 section.bg-animate {
  animation: phoneMove 45s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
  transform-style: preserve-3d;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@media (min-width: 1920px) {
  .cid-uQQNVZQgU2 section.bg-animate {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQNVZQgU2 section.bg-animate {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQNVZQgU2 section.bg-animate {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
    transform: none;
    perspective: none;
    transform-style: flat;
    will-change: background-position;
  }
}
@keyframes phoneMove {
  0%,
  100% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
  25% {
    background-position: 51% 49%;
    transform: scale(1.05) perspective(800px) rotateY(1deg);
  }
  50% {
    background-position: 49% 51%;
    transform: scale(1.05) perspective(800px) rotateY(-1deg);
  }
  75% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
}
@keyframes phoneMoveSimple {
  0%,
  100% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 51% 49%;
  }
  50% {
    background-position: 49% 51%;
  }
  75% {
    background-position: 50% 49%;
  }
}
.cid-uQQP1fg9t7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQQP1fg9t7 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQQP1fg9t7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQP1fg9t7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQP1fg9t7 .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQQP1fg9t7 .content-wrap .card {
  justify-content: space-between;
}
.cid-uQQP1fg9t7 .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQQP1fg9t7 .content-wrapper {
    padding: 0;
  }
}
.cid-uQQP1fg9t7 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQQP1fg9t7 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQQP1fg9t7 .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQQP1fg9t7 .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQQP1fg9t7 .mbr-desc,
.cid-uQQP1fg9t7 .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQQP0JlC4m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pexels-naoxotl-32986917.webp");
  background-attachment: fixed;
  background-position: center center;
  animation: phoneMove 40s ease-in-out infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQP0JlC4m {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQP0JlC4m {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQP0JlC4m {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
  }
}
.cid-uQQP0JlC4m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQP0JlC4m .mbr-fallback-image {
  display: block;
  background-size: 115%;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  animation: phoneMove 40s ease-in-out infinite;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQP0JlC4m .mbr-fallback-image {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQP0JlC4m .mbr-fallback-image {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQP0JlC4m .mbr-fallback-image {
    background-size: cover;
    background-position: center center;
    animation: none;
    transition: none;
    will-change: auto;
  }
}
@media (max-width: 992px) {
  .cid-uQQP0JlC4m .container {
    padding: 0 20px;
  }
}
.cid-uQQP0JlC4m .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uQQP0JlC4m .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uQQP0JlC4m .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQP0JlC4m .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uQQP0JlC4m .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQQP0JlC4m .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uQQP0JlC4m .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-uQQP0JlC4m .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQQP0JlC4m .image-wrapper img {
    height: 300px;
  }
}
.cid-uQQP0JlC4m .mbr-section-title {
  color: #c2b299;
}
.cid-uQQP0JlC4m .mbr-text {
  color: #ededed;
}
.cid-uQQP0JlC4m img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -o-transition: 1s ease;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease, border-radius 0.4s ease, box-shadow 0.6s ease;
  border-radius: 1.5em;
  top: 0px;
  right: 0px;
  -webkit-box-shadow: 10px 10px 5px #000;
  border: 2px solid white;
  display: block;
  max-height: 80vh;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cid-uQQP0JlC4m img:hover {
  transform: scale(1.03);
  filter: brightness(1.15) saturate(1.1);
  border-radius: 0.5em;
  -webkit-box-shadow: 15px 15px 55px #000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.cid-uQQP0JlC4m .glass {
  text-shadow: 2px 2px 5px black;
  border-radius: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 10px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 2px solid light-gray;
}
.cid-uQQP0JlC4m .mbr-section-title,
.cid-uQQP0JlC4m .mbr-section-btn {
  text-align: center;
  color: #ededed;
}
.cid-uQQP0JlC4m .btn {
  top: 0;
  right: 0px;
  padding: 5px;
  position: relative;
  text-shadow: 0px 0px 0px gray;
  border-radius: 1em 1em 1em 1em;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.cid-uQQP0JlC4m .btn:hover {
  top: 3px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}
.cid-uQQP0JlC4m section.bg-animate {
  animation: phoneMove 45s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
  transform-style: preserve-3d;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}
@media (min-width: 1920px) {
  .cid-uQQP0JlC4m section.bg-animate {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQP0JlC4m section.bg-animate {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQP0JlC4m section.bg-animate {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
    transform: none;
    perspective: none;
    transform-style: flat;
    will-change: background-position;
  }
}
@keyframes phoneMove {
  0%,
  100% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
  25% {
    background-position: 51% 49%;
    transform: scale(1.05) perspective(800px) rotateY(1deg);
  }
  50% {
    background-position: 49% 51%;
    transform: scale(1.05) perspective(800px) rotateY(-1deg);
  }
  75% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
}
@keyframes phoneMoveSimple {
  0%,
  100% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 51% 49%;
  }
  50% {
    background-position: 49% 51%;
  }
  75% {
    background-position: 50% 49%;
  }
}
.cid-uQQPcmoyGv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQQPcmoyGv .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQQPcmoyGv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQPcmoyGv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQPcmoyGv .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQQPcmoyGv .content-wrap .card {
  justify-content: space-between;
}
.cid-uQQPcmoyGv .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQQPcmoyGv .content-wrapper {
    padding: 0;
  }
}
.cid-uQQPcmoyGv .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQQPcmoyGv .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQQPcmoyGv .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQQPcmoyGv .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQQPcmoyGv .mbr-desc,
.cid-uQQPcmoyGv .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQQPbXi4Ui {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cullman.webp");
  background-attachment: fixed;
  background-position: center center;
  animation: phoneMove 40s ease-in-out infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQPbXi4Ui {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQPbXi4Ui {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui {
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
  }
}
.cid-uQQPbXi4Ui .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQPbXi4Ui .mbr-fallback-image {
  display: block;
  background-size: 115%;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  animation: phoneMove 40s ease-in-out infinite;
  background-repeat: no-repeat;
  will-change: transform;
  transition: background-position 0.3s ease-out;
}
@media (min-width: 1920px) {
  .cid-uQQPbXi4Ui .mbr-fallback-image {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQPbXi4Ui .mbr-fallback-image {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .mbr-fallback-image {
    background-size: cover;
    background-position: center center;
    animation: none;
    transition: none;
    will-change: auto;
  }
}
.cid-uQQPbXi4Ui .container {
  max-width: 100%;
  overflow-x: hidden;
}
@media (max-width: 992px) {
  .cid-uQQPbXi4Ui .container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .container {
    padding: 0 15px;
  }
}
.cid-uQQPbXi4Ui .row {
  justify-content: center;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .row {
    margin: 0 -5px;
  }
}
@media (max-width: 576px) {
  .cid-uQQPbXi4Ui .row {
    margin: 0;
  }
}
.cid-uQQPbXi4Ui .title-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uQQPbXi4Ui .title-wrapper {
    margin-bottom: 24px;
    padding: 0 10px;
  }
}
.cid-uQQPbXi4Ui .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 992px) {
  .cid-uQQPbXi4Ui .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .title-wrapper .mbr-section-title {
    margin-bottom: 16px;
    font-size: 1.5rem !important;
  }
}
@media (max-width: 576px) {
  .cid-uQQPbXi4Ui .title-wrapper .mbr-section-title {
    font-size: 1.3rem !important;
  }
}
@media (max-width: 480px) {
  .cid-uQQPbXi4Ui .title-wrapper .mbr-section-title {
    font-size: 1.1rem !important;
  }
}
.cid-uQQPbXi4Ui .title-wrapper .mbr-text {
  margin-bottom: 50px;
  width: 100%;
  max-width: 100%;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .cid-uQQPbXi4Ui .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .title-wrapper .mbr-text {
    margin-bottom: 16px;
    font-size: 0.9rem !important;
    line-height: 1.5;
  }
}
@media (max-width: 576px) {
  .cid-uQQPbXi4Ui .title-wrapper .mbr-text {
    font-size: 0.85rem !important;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .cid-uQQPbXi4Ui .title-wrapper .mbr-text {
    font-size: 0.8rem !important;
    line-height: 1.3;
  }
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .title-wrapper {
    margin-bottom: 16px;
    padding: 0 5px;
  }
}
.cid-uQQPbXi4Ui .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
}
.cid-uQQPbXi4Ui .image-wrapper img {
  height: auto;
  object-fit: contain;
  width: 100%;
  max-height: 450px;
  min-height: 200px;
  object-position: center;
}
@media (max-width: 992px) {
  .cid-uQQPbXi4Ui .image-wrapper img {
    height: 300px;
    max-height: 300px;
  }
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .image-wrapper img {
    max-height: 250px;
    min-height: 150px;
  }
}
@media (max-width: 480px) {
  .cid-uQQPbXi4Ui .image-wrapper img {
    max-height: 200px;
    min-height: 120px;
  }
}
.cid-uQQPbXi4Ui .mbr-section-title {
  color: #c2b299;
}
.cid-uQQPbXi4Ui .mbr-text {
  color: #ededed;
  word-break: break-word;
  text-align: justify;
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .mbr-text {
    text-align: left;
  }
}
.cid-uQQPbXi4Ui img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -o-transition: 1s ease;
  object-fit: contain;
  transition: transform 0.6s ease, filter 0.6s ease, border-radius 0.4s ease, box-shadow 0.6s ease;
  border-radius: 1.5em;
  top: 0px;
  right: 0px;
  -webkit-box-shadow: 10px 10px 5px #000;
  border: 2px solid white;
  display: block;
  max-height: 80vh;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  min-width: 200px;
  min-height: 120px;
}
.cid-uQQPbXi4Ui img:hover {
  transform: scale(1.03);
  filter: brightness(1.15) saturate(1.1);
  border-radius: 0.5em;
  -webkit-box-shadow: 15px 15px 55px #000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui img {
    max-height: 60vh;
    min-width: 150px;
    min-height: 100px;
    border-radius: 1em;
    -webkit-box-shadow: 5px 5px 3px #000;
  }
  .cid-uQQPbXi4Ui img:hover {
    transform: scale(1.02);
    border-radius: 0.7em;
    -webkit-box-shadow: 10px 10px 25px #000;
  }
}
@media (max-width: 480px) {
  .cid-uQQPbXi4Ui img {
    max-height: 50vh;
    min-width: 120px;
    min-height: 80px;
    border-radius: 0.8em;
    border: 1px solid white;
  }
  .cid-uQQPbXi4Ui img:hover {
    transform: scale(1.01);
  }
}
.cid-uQQPbXi4Ui .glass {
  width: 100%;
  text-shadow: 2px 2px 5px black;
  border-radius: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  max-width: 80%;
  box-sizing: border-box;
  word-wrap: break-word;
  hyphens: auto;
  transform: scale(0.88);
  transform-origin: top center;
}
@media (max-width: 992px) {
  .cid-uQQPbXi4Ui .glass {
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 0.95em;
    transform: scale(0.92);
  }
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .glass {
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin: 0 10px;
    transform: scale(0.96);
  }
}
@media (max-width: 576px) {
  .cid-uQQPbXi4Ui .glass {
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    margin: 0 5px;
    border-width: 1px;
    transform: scale(1);
  }
}
@media (max-width: 480px) {
  .cid-uQQPbXi4Ui .glass {
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    margin: 0;
  }
}
.cid-uQQPbXi4Ui .mbr-section-title,
.cid-uQQPbXi4Ui .mbr-section-btn {
  text-align: center;
  color: #ededed;
  word-break: break-word;
}
.cid-uQQPbXi4Ui .btn {
  top: 0;
  right: 0px;
  padding: 8px 16px;
  position: relative;
  text-shadow: 0px 0px 0px gray;
  border-radius: 1em;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.cid-uQQPbXi4Ui .btn:hover {
  top: 3px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .btn {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  .cid-uQQPbXi4Ui .btn {
    padding: 5px 10px;
    font-size: 0.85rem;
  }
}
.cid-uQQPbXi4Ui section.bg-animate {
  animation: phoneMove 45s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
  transform-style: preserve-3d;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
@media (min-width: 1920px) {
  .cid-uQQPbXi4Ui section.bg-animate {
    background-size: 130%;
  }
}
@media (min-width: 2560px) {
  .cid-uQQPbXi4Ui section.bg-animate {
    background-size: 140%;
  }
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui section.bg-animate {
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    background-attachment: scroll;
    animation: phoneMoveSimple 50s linear infinite;
    transform: none;
    perspective: none;
    transform-style: flat;
    will-change: background-position;
  }
}
@keyframes phoneMove {
  0%,
  100% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
  25% {
    background-position: 51% 49%;
    transform: scale(1.05) perspective(800px) rotateY(1deg);
  }
  50% {
    background-position: 49% 51%;
    transform: scale(1.05) perspective(800px) rotateY(-1deg);
  }
  75% {
    background-position: 50% 50%;
    transform: scale(1.05) perspective(800px) rotateY(0deg);
  }
}
@keyframes phoneMoveSimple {
  0%,
  100% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 51% 49%;
  }
  50% {
    background-position: 49% 51%;
  }
  75% {
    background-position: 50% 49%;
  }
}
.cid-uQQPbXi4Ui .img-responsive-contain {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}
.cid-uQQPbXi4Ui .container,
.cid-uQQPbXi4Ui .container-fluid {
  overflow-x: hidden;
}
@media (max-width: 992px) {
  .cid-uQQPbXi4Ui .container,
  .cid-uQQPbXi4Ui .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .container,
  .cid-uQQPbXi4Ui .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 576px) {
  .cid-uQQPbXi4Ui .container,
  .cid-uQQPbXi4Ui .container-fluid {
    padding: 0 10px;
  }
}
.cid-uQQPbXi4Ui .col-12,
.cid-uQQPbXi4Ui .col-lg-6 {
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uQQPbXi4Ui .col-12,
  .cid-uQQPbXi4Ui .col-lg-6 {
    padding: 0 5px;
  }
}
@media (max-width: 576px) {
  .cid-uQQPbXi4Ui .col-12,
  .cid-uQQPbXi4Ui .col-lg-6 {
    padding: 0;
  }
}
.cid-uQQQxxaQ9l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQQQxxaQ9l .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQQQxxaQ9l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQQxxaQ9l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQQxxaQ9l .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQQQxxaQ9l .content-wrap .card {
  justify-content: space-between;
}
.cid-uQQQxxaQ9l .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQQQxxaQ9l .content-wrapper {
    padding: 0;
  }
}
.cid-uQQQxxaQ9l .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQQQxxaQ9l .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQQQxxaQ9l .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQQQxxaQ9l .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQQQxxaQ9l .mbr-desc,
.cid-uQQQxxaQ9l .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQQYCYQAzP {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pexels-heyho-6947272.webp");
}
.cid-uQQYCYQAzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQYCYQAzP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQYCYQAzP .content-wrap {
  padding: 60px;
  background-color: #ca4400;
  opacity: .9;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uQQYCYQAzP .content-wrap {
    padding: 30px 20px;
    display: block;
  }
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap {
  width: 50%;
  padding-right: 60px;
}
@media (max-width: 992px) {
  .cid-uQQYCYQAzP .content-wrap .cont-wrap {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uQQYCYQAzP .content-wrap .cont-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #000000;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .title-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper {
  padding-right: 130px;
}
@media (max-width: 1200px) {
  .cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 10px;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 22px 20px;
  border: none !important;
  box-shadow: none;
  background-color: #ffffff;
  line-height: 1 !important;
}
@media (max-width: 992px) {
  .cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  font-size: 18px;
  opacity: .6;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uQQYCYQAzP .content-wrap .cont-wrap .form-wrapper .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-top: 0;
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 10px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uQQYCYQAzP .content-wrap .map-wrapper {
    width: 100%;
    padding-top: 250px;
  }
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  background-color: #232323;
  padding: 30px;
}
@media (max-width: 1200px) {
  .cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper {
    padding: 20px 10px 10px;
  }
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap {
  width: 55%;
  padding-right: 20px;
}
@media (max-width: 1200px) {
  .cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap {
    padding-right: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .contacts-wrap .list .item-wrap:focus {
  color: #ffeb69;
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .social-wrapper {
  width: 45%;
}
@media (max-width: 1200px) {
  .cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .social-wrapper {
    width: 100%;
  }
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .soc-desc {
  margin-bottom: 16px;
  opacity: .6;
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uQQYCYQAzP .content-wrap .map-wrapper .contacts-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #005db7;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uQQYCYQAzP .mbr-section-title,
.cid-uQQYCYQAzP .title-wrap {
  color: #ffffff;
}
.cid-uQQYCYQAzP P {
  color: #ffffff;
}
.cid-uQQYCYQAzP .soc-desc,
.cid-uQQYCYQAzP .social-wrapper {
  color: #ffffff;
}
.cid-uQQYDQ4V00 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQQYDQ4V00 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQQYDQ4V00 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQYDQ4V00 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQYDQ4V00 .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQQYDQ4V00 .content-wrap .card {
  justify-content: space-between;
}
.cid-uQQYDQ4V00 .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQQYDQ4V00 .content-wrapper {
    padding: 0;
  }
}
.cid-uQQYDQ4V00 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQQYDQ4V00 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQQYDQ4V00 .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQQYDQ4V00 .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQQYDQ4V00 .mbr-desc,
.cid-uQQYDQ4V00 .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQR0Ev4IqU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #005db7;
  overflow: hidden;
  text-shadow: 2px 2px 5px black;
}
.cid-uQQQvcj5k4 {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uQQQvcj5k4 H3 {
  text-align: left;
}
.cid-uQQQvcj5k4 P {
  color: #303030;
}
.cid-uQQFJsUViq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQQFJsUViq .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQQFJsUViq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQFJsUViq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQFJsUViq .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQQFJsUViq .content-wrap .card {
  justify-content: space-between;
}
.cid-uQQFJsUViq .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQQFJsUViq .content-wrapper {
    padding: 0;
  }
}
.cid-uQQFJsUViq .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQQFJsUViq .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQQFJsUViq .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQQFJsUViq .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQQFJsUViq .mbr-desc,
.cid-uQQFJsUViq .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQQQCxN1OO.popup-builder {
  background-color: #ffffff;
}
.cid-uQQQCxN1OO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQQQCxN1OO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQQQCxN1OO .modal-content,
.cid-uQQQCxN1OO .modal-dialog {
  height: auto;
}
.cid-uQQQCxN1OO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQQQCxN1OO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQQQCxN1OO .form-wrapper .mbr-form .form-group,
  .cid-uQQQCxN1OO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQQQCxN1OO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQQQCxN1OO .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQQQCxN1OO .mbr-text {
  text-align: left;
}
.cid-uQQQCxN1OO .pt-0 {
  padding-top: 0 !important;
}
.cid-uQQQCxN1OO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQQQCxN1OO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQQQCxN1OO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQQQCxN1OO .modal-open {
  overflow: hidden;
}
.cid-uQQQCxN1OO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQQQCxN1OO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQQQCxN1OO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQQQCxN1OO .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uQQQCxN1OO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQQQCxN1OO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQQQCxN1OO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQQQCxN1OO .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uQQQCxN1OO .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQQQCxN1OO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQQQCxN1OO .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQQQCxN1OO .modal-backdrop.show {
  opacity: .5;
}
.cid-uQQQCxN1OO .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uQQQCxN1OO .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQQQCxN1OO .modal-header {
    padding: 1rem;
  }
}
.cid-uQQQCxN1OO .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQQQCxN1OO .modal-header .close svg {
  fill: #353535;
}
.cid-uQQQCxN1OO .modal-header .close:hover {
  opacity: 1;
}
.cid-uQQQCxN1OO .modal-header .close:focus {
  outline: none;
}
.cid-uQQQCxN1OO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uQQQCxN1OO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQQQCxN1OO .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQQQCxN1OO .modal-body {
    padding: 1rem;
  }
}
.cid-uQQQCxN1OO .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uQQQCxN1OO .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQQQCxN1OO .modal-footer {
    padding: 1rem;
  }
}
.cid-uQQQCxN1OO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQQQCxN1OO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQQQCxN1OO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQQQCxN1OO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQQQCxN1OO .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQQQCxN1OO .modal-lg,
  .cid-uQQQCxN1OO .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQQQCxN1OO .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQQQCxN1OO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQQQCxN1OO .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uQQQCxN1OO .form-group {
  margin-bottom: 1rem;
}
.cid-uQQQCxN1OO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQQQCxN1OO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQQQCxN1OO .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uQQQCxN1OO .mbr-section-btn {
  margin: 0;
}
.cid-uQQQCxN1OO .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQR0eaRpNe .navbar {
  padding: 0.5rem 1rem;
  justify-content: space-between;
  background: #000000;
  transition: none;
  min-height: 50px;
  max-width: 100%;
  width: auto;
  opacity: 0;
  border-radius: 0em 0em 2em 2em;
  animation: fadeIn 0.5s ease-out forwards;
}
.cid-uQR0eaRpNe .grow {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  border-radius: 15px 15px 15px 15px;
  color: gray;
}
.cid-uQR0eaRpNe .grow:hover {
  transform: scale(1.1);
  transition: all 1s ease;
  opacity: 1;
  color: white;
}
.cid-uQR0eaRpNe .navbar-fixed-top {
  padding-top: 0;
}
.cid-uQR0eaRpNe .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uQR0eaRpNe .collapse {
  justify-content: space-between !important;
}
.cid-uQR0eaRpNe .dropdown-menu {
  z-index: 9999;
  border-radius: 0em 0em 2em 2em;
  background-color: #1a1a1a;
  color: gray;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.5s;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  margin-top: 0 !important;
}
.cid-uQR0eaRpNe .dropdown-menu.show {
  opacity: 1;
}
.cid-uQR0eaRpNe .icon-wrap {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.cid-uQR0eaRpNe .mbr-iconfont {
  cursor: pointer;
}
.cid-uQR0eaRpNe .nav-item {
  justify-content: flex-end;
  letter-spacing: 2px;
  font-weight: 200;
}
.cid-uQR0eaRpNe .nav-item:before {
  position: absolute;
  left: 0px;
  top: 50%;
  content: '';
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #ffffff;
  border-radius: 50%;
}
.cid-uQR0eaRpNe .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uQR0eaRpNe .location-title {
  margin: 0;
  color: #ffffff;
}
.cid-uQR0eaRpNe .menu-logo {
  display: flex;
  align-items: center;
}
.cid-uQR0eaRpNe .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  transform-origin: top;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQR0eaRpNe .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uQR0eaRpNe .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uQR0eaRpNe .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uQR0eaRpNe .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uQR0eaRpNe .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uQR0eaRpNe .menu-content-top {
  background: #ca4400;
  max-width: 100%;
  display: none;
  transition: all 0.3s;
  jistify-content: space-between;
  -webkit-justify-content: left;
  justify-content: space-between;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0em 0em 2em 2em;
  -webkit-box-shadow: 10px 10px 15px #000000;
}
.cid-uQR0eaRpNe .dropdown-item {
  padding: 0.4rem 1.8rem;
  opacity: 1;
}
.cid-uQR0eaRpNe .dropdown-item,
.cid-uQR0eaRpNe .nav-link,
.cid-uQR0eaRpNe .brand-name {
  font-style: normal;
  opacity: 1;
}
.cid-uQR0eaRpNe .dropdown-item:hover,
.cid-uQR0eaRpNe .nav-link:hover,
.cid-uQR0eaRpNe .brand-name:hover {
  color: #ffffff !important;
}
.cid-uQR0eaRpNe .dropdown-item:active {
  background-color: #1a1a1a;
  z-index: 9999;
  opacity: 1;
}
.cid-uQR0eaRpNe .menu-bottom {
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
}
.cid-uQR0eaRpNe .navbar-dropdown.bg-color.transparent.opened {
  background: rgba(0, 0, 0, 0.7) !important;
}
.cid-uQR0eaRpNe .dropdown-item:before {
  align-items: center;
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQR0eaRpNe .content-text {
  margin-bottom: 0;
}
.cid-uQR0eaRpNe .navbar-nav {
  align-items: center;
  justify-content: center;
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  overflow: visible;
}
@media (min-width: 992px) {
  .cid-uQR0eaRpNe .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uQR0eaRpNe .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uQR0eaRpNe .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uQR0eaRpNe .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQR0eaRpNe .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uQR0eaRpNe .nav-dropdown .dropdown-item {
  font-weight: 400;
  opacity: 1;
  z-index: 9999;
}
.cid-uQR0eaRpNe .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInFromRight 0.8s ease-out forwards;
  animation-delay: 0.9s;
}
.cid-uQR0eaRpNe .nav-dropdown .link {
  font-weight: 400;
  opacity: 1;
  z-index: 9999;
}
.cid-uQR0eaRpNe .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uQR0eaRpNe .content-right-side {
  text-align: center;
}
.cid-uQR0eaRpNe .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uQR0eaRpNe .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uQR0eaRpNe .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #ffffff !important;
}
.cid-uQR0eaRpNe .info-widget {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.cid-uQR0eaRpNe .widget-title:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.cid-uQR0eaRpNe .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uQR0eaRpNe .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uQR0eaRpNe .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uQR0eaRpNe .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uQR0eaRpNe .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-uQR0eaRpNe .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uQR0eaRpNe .navbar .menu-content-top {
    display: flex;
    height: 50px;
  }
  .cid-uQR0eaRpNe .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQR0eaRpNe .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-uQR0eaRpNe .navbar {
    display: block;
    padding: 0;
  }
  .cid-uQR0eaRpNe .navbar .menu-logo {
    display: flex;
    left: 110px;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uQR0eaRpNe .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uQR0eaRpNe .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uQR0eaRpNe .navbar-toggler {
    display: none;
  }
  .cid-uQR0eaRpNe .dropdown .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    width: auto;
    min-width: 200px;
  }
}
.cid-uQR0eaRpNe .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uQR0eaRpNe .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uQR0eaRpNe .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uQR0eaRpNe .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uQR0eaRpNe .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uQR0eaRpNe .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQR0eaRpNe .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uQR0eaRpNe .dropdown .dropdown-menu {
  opacity: 1;
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uQR0eaRpNe .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQR0eaRpNe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  opacity: 1;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQR0eaRpNe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQR0eaRpNe .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uQR0eaRpNe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQR0eaRpNe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQR0eaRpNe .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uQR0eaRpNe .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQR0eaRpNe .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uQR0eaRpNe .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uQR0eaRpNe .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uQR0eaRpNe .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uQR0eaRpNe .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uQR0eaRpNe .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uQR0eaRpNe button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 0;
  align-self: center;
}
.cid-uQR0eaRpNe button.navbar-toggler:focus {
  outline: none;
}
.cid-uQR0eaRpNe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uQR0eaRpNe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQR0eaRpNe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQR0eaRpNe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQR0eaRpNe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQR0eaRpNe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQR0eaRpNe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQR0eaRpNe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQR0eaRpNe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQR0eaRpNe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQR0eaRpNe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQR0eaRpNe .collapsed .btn {
  display: flex;
}
.cid-uQR0eaRpNe .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uQR0eaRpNe .collapsed .navbar-collapse.collapsing,
.cid-uQR0eaRpNe .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uQR0eaRpNe .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uQR0eaRpNe .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uQR0eaRpNe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uQR0eaRpNe .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uQR0eaRpNe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uQR0eaRpNe .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uQR0eaRpNe .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uQR0eaRpNe .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uQR0eaRpNe .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uQR0eaRpNe .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uQR0eaRpNe .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uQR0eaRpNe .collapsed button.navbar-toggler {
  display: block;
}
.cid-uQR0eaRpNe .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uQR0eaRpNe .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uQR0eaRpNe .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  border-radius: 0em 0em 2em 2em;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uQR0eaRpNe .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uQR0eaRpNe .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uQR0eaRpNe .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uQR0eaRpNe .collapsed .menu-bottom {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-uQR0eaRpNe .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    z-index: 1051;
  }
  .cid-uQR0eaRpNe .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 100%;
  }
  .cid-uQR0eaRpNe .navbar-collapse {
    padding-bottom: 0.5rem;
    display: none !important;
    padding-right: 0 !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000000;
    padding-top: 0.5rem;
    border-radius: 0 0 2em 2em;
    -webkit-box-shadow: 10px 10px 15px #000000;
    box-shadow: 10px 10px 15px #000000;
    z-index: 1050;
  }
  .cid-uQR0eaRpNe .navbar-collapse.collapsing,
  .cid-uQR0eaRpNe .navbar-collapse.show {
    display: block !important;
  }
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .navbar-nav,
  .cid-uQR0eaRpNe .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uQR0eaRpNe .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uQR0eaRpNe .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .navbar-buttons,
  .cid-uQR0eaRpNe .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uQR0eaRpNe .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uQR0eaRpNe img {
    height: 3.8rem !important;
  }
  .cid-uQR0eaRpNe .btn {
    display: flex;
  }
  .cid-uQR0eaRpNe button.navbar-toggler {
    display: block;
  }
  .cid-uQR0eaRpNe .navbar-brand {
    margin-left: 0 !important;
    margin-top: 0;
  }
  .cid-uQR0eaRpNe .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQR0eaRpNe .dropdown {
    transition: all 0.3s ease;
  }
  .cid-uQR0eaRpNe .dropdown .dropdown-menu {
    width: 100%;
    opcaity: 1;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uQR0eaRpNe .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uQR0eaRpNe .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uQR0eaRpNe .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uQR0eaRpNe .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uQR0eaRpNe .dropdown .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
  }
  .cid-uQR0eaRpNe .navbar {
    flex-wrap: nowrap;
    padding: 0.5rem;
  }
  .cid-uQR0eaRpNe .menu-logo {
    display: flex !important;
    order: 0;
  }
  .cid-uQR0eaRpNe .navbar-toggler {
    order: 1;
  }
  .cid-uQR0eaRpNe .navbar-nav {
    flex-direction: column;
    align-items: center;
  }
  .cid-uQR0eaRpNe .nav-item {
    width: 100%;
    text-align: center;
  }
  .cid-uQR0eaRpNe .navbar.bg-color.transparent .navbar-collapse {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .cid-uQR0eaRpNe .navbar-collapse.show .nav-item,
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .nav-item {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInFromRightMobile 0.6s ease-out forwards;
  }
  .cid-uQR0eaRpNe .navbar-collapse.show .nav-item:nth-child(1),
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .nav-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  .cid-uQR0eaRpNe .navbar-collapse.show .nav-item:nth-child(2),
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .nav-item:nth-child(2) {
    animation-delay: 0.15s;
  }
  .cid-uQR0eaRpNe .navbar-collapse.show .nav-item:nth-child(3),
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .nav-item:nth-child(3) {
    animation-delay: 0.2s;
  }
  .cid-uQR0eaRpNe .navbar-collapse.show .nav-item:nth-child(4),
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .nav-item:nth-child(4) {
    animation-delay: 0.25s;
  }
  .cid-uQR0eaRpNe .navbar-collapse.show .nav-item:nth-child(5),
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .nav-item:nth-child(5) {
    animation-delay: 0.3s;
  }
  .cid-uQR0eaRpNe .navbar-collapse.show .navbar-buttons,
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .navbar-buttons {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInFromRightMobile 0.6s ease-out forwards;
    animation-delay: 0.4s;
  }
  .cid-uQR0eaRpNe .navbar-collapse:not(.show) .nav-item {
    opacity: 0;
    transform: translateX(50px);
    animation: none;
  }
  .cid-uQR0eaRpNe .dropdown .dropdown-menu {
    position: relative !important;
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-top: 0;
    background-color: rgba(26, 26, 26, 0.7) !important;
    border-radius: 0 0 1em 1em;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .cid-uQR0eaRpNe .dropdown.open > .dropdown-menu {
    position: relative !important;
    opacity: 1;
    height: auto;
    padding: 1rem 0;
    visibility: visible;
    margin-top: 0.5rem;
  }
  .cid-uQR0eaRpNe .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .cid-uQR0eaRpNe .dropdown .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
  }
  .cid-uQR0eaRpNe .dropdown .dropdown-menu .dropdown-item:hover,
  .cid-uQR0eaRpNe .dropdown .dropdown-menu .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
  }
  .cid-uQR0eaRpNe .nav-item.dropdown {
    margin-bottom: 0;
  }
  .cid-uQR0eaRpNe .navbar-collapse.show .dropdown-menu .dropdown-item,
  .cid-uQR0eaRpNe .navbar-collapse.collapsing .dropdown-menu .dropdown-item {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInFromRightMobile 0.4s ease-out forwards;
  }
  .cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(1) {
    animation-delay: 0.05s;
  }
  .cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(2) {
    animation-delay: 0.1s;
  }
  .cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(3) {
    animation-delay: 0.15s;
  }
  .cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(4) {
    animation-delay: 0.2s;
  }
  .cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(5) {
    animation-delay: 0.25s;
  }
  .cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(6) {
    animation-delay: 0.3s;
  }
  .cid-uQR0eaRpNe .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  .cid-uQR0eaRpNe .dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
.cid-uQR0eaRpNe .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  opcity: 1;
  opacity: 1;
}
.cid-uQR0eaRpNe .nav-link:focus {
  outline: none;
  text-align: center;
}
.cid-uQR0eaRpNe .navbar-toggler {
  position: relative;
}
.cid-uQR0eaRpNe .dropdown-item.active,
.cid-uQR0eaRpNe .dropdown-item:active {
  color: initial;
}
.cid-uQR0eaRpNe .widget-title,
.cid-uQR0eaRpNe .widget-icon {
  color: #ffffff;
  text-align: center;
}
.cid-uQR0eaRpNe .widget-text {
  color: #656565;
}
@media (max-width: 992px) {
  .cid-uQR0eaRpNe .menu-logo {
    display: none;
  }
  .cid-uQR0eaRpNe .navbar-collapse {
    padding: 0;
    padding-top: 1.5rem;
  }
  .cid-uQR0eaRpNe .nav-item:before {
    content: none;
  }
  .cid-uQR0eaRpNe .navbar {
    padding: 0;
    opacity: 1;
  }
  .cid-uQR0eaRpNe .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQR0eaRpNe button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
@media (max-width: 768px) {
  .cid-uQR0eaRpNe .menu-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    position: relative;
  }
  .cid-uQR0eaRpNe .menu-logo {
    display: flex !important;
    justify-content: center;
    flex-grow: 1;
    order: 1;
  }
  .cid-uQR0eaRpNe .navbar-brand {
    display: flex;
    justify-content: center;
    width: auto;
    margin: 0;
  }
  .cid-uQR0eaRpNe .navbar-brand img {
    max-height: 60px;
    width: auto;
  }
  .cid-uQR0eaRpNe .navbar-toggler {
    order: 2;
    margin-left: auto;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .cid-uQR0eaRpNe .collapse.navbar-collapse {
    flex-grow: 1;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .cid-uQR0eaRpNe .navbar-nav {
    width: 100%;
    z-index: 2;
  }
  .cid-uQR0eaRpNe .menu-content-top,
  .cid-uQR0eaRpNe .menu-content-right {
    z-index: 0;
  }
}
.cid-uQR0eaRpNe .navbar.bg-color.transparent {
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cid-uQR0eaRpNe .navbar.bg-color.transparent .dropdown-menu {
  background-color: rgba(26, 26, 26, 0.7) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.cid-uQR0eaRpNe .navbar.bg-color.transparent .nav-link,
.cid-uQR0eaRpNe .navbar.bg-color.transparent .dropdown-item,
.cid-uQR0eaRpNe .navbar.bg-color.transparent .brand-name {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  60% {
    transform: translateX(-10px);
    opacity: 0.8;
  }
  80% {
    transform: translateX(5px);
    opacity: 0.9;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInFromRightMobile {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }
  60% {
    transform: translateX(-3px);
    opacity: 0.8;
  }
  80% {
    transform: translateX(1px);
    opacity: 0.9;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.cid-uQR0eaRpNe .navbar-nav .nav-item {
  opacity: 0;
  transform: translateX(100px);
  animation: slideInFromRight 0.8s ease-out forwards;
}
.cid-uQR0eaRpNe .navbar-nav .nav-item:nth-child(1) {
  animation-delay: 0.1s;
}
.cid-uQR0eaRpNe .navbar-nav .nav-item:nth-child(2) {
  animation-delay: 0.2s;
}
.cid-uQR0eaRpNe .navbar-nav .nav-item:nth-child(3) {
  animation-delay: 0.3s;
}
.cid-uQR0eaRpNe .navbar-nav .nav-item:nth-child(4) {
  animation-delay: 0.4s;
}
.cid-uQR0eaRpNe .navbar-nav .nav-item:nth-child(5) {
  animation-delay: 0.5s;
}
.cid-uQR0eaRpNe .navbar-nav .nav-item:nth-child(6) {
  animation-delay: 0.6s;
}
.cid-uQR0eaRpNe .navbar-nav .nav-item:nth-child(7) {
  animation-delay: 0.7s;
}
.cid-uQR0eaRpNe .navbar-nav .nav-item:nth-child(8) {
  animation-delay: 0.8s;
}
.cid-uQR0eaRpNe .dropdown-menu .dropdown-item {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInFromRight 0.6s ease-out forwards;
}
.cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(1) {
  animation-delay: 0.1s;
}
.cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(2) {
  animation-delay: 0.2s;
}
.cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(3) {
  animation-delay: 0.3s;
}
.cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(4) {
  animation-delay: 0.4s;
}
.cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(5) {
  animation-delay: 0.5s;
}
.cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(6) {
  animation-delay: 0.6s;
}
.cid-uQR0eaRpNe .dropdown-menu .dropdown-item:nth-child(7) {
  animation-delay: 0.7s;
}
.cid-uQR0eaRpNe .nav-item .nav-link {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-uQR0eaRpNe .nav-item .nav-link:hover {
  transform: scale(1.05) translateX(-5px);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cid-uQR0eaRpNe .dropdown.open .dropdown-menu {
  animation: dropdownSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
@keyframes dropdownSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-10px) translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
.cid-uQR0eaRpNe .navbar-nav .nav-item.no-animate {
  animation: none;
  opacity: 1;
  transform: none;
}
.cid-uQR0vzaSMz {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
  text-shadow: 2px 2px 5px black;
}
.cid-uQR0vzaSMz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQR0vzaSMz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQR0vzaSMz.mbr-fullscreen {
  padding: 0 !important;
}
.cid-uQR0vzaSMz .container-fluid {
  padding: 0 !important;
}
.cid-uQR0vzaSMz img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uQR0vzaSMz .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uQR0wXnW7k {
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ca4400;
}
.cid-uQR0wXnW7k .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #5f0202;
}
.cid-uQR0wXnW7k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQR0wXnW7k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQR0wXnW7k .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uQR0wXnW7k .content-wrap .card {
  justify-content: space-between;
}
.cid-uQR0wXnW7k .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uQR0wXnW7k .content-wrapper {
    padding: 0;
  }
}
.cid-uQR0wXnW7k .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQR0wXnW7k .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #5f0202;
  box-shadow: 4px 4px 0 0 #5f0202;
  border: 2px solid #5f0202;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uQR0wXnW7k .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uQR0wXnW7k .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uQR0wXnW7k .mbr-desc,
.cid-uQR0wXnW7k .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQR0Ev4IqU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #005db7;
  overflow: hidden;
  text-shadow: 2px 2px 5px black;
}
