.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.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: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ed1c24 !important;
}
.bg-success {
  background-color: #000000 !important;
}
.bg-info {
  background-color: #ed1c24 !important;
}
.bg-warning {
  background-color: #000000 !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ed1c24 !important;
  border-color: #ed1c24 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a50d13 !important;
  border-color: #a50d13 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a50d13 !important;
  border-color: #a50d13 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ed1c24 !important;
  border-color: #ed1c24 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a50d13 !important;
  border-color: #a50d13 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a50d13 !important;
  border-color: #a50d13 !important;
}
.btn-success,
.btn-success:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ed1c24;
  color: #ed1c24;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a50d13 !important;
  background-color: transparent!important;
  border-color: #a50d13 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ed1c24 !important;
  border-color: #ed1c24 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ed1c24;
  color: #ed1c24;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a50d13 !important;
  background-color: transparent!important;
  border-color: #a50d13 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ed1c24 !important;
  border-color: #ed1c24 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #ed1c24 !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #000000 !important;
}
.text-info {
  color: #ed1c24 !important;
}
.text-warning {
  color: #000000 !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #970c11 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #970c11 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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: #ed1c24;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ed1c24;
}
.alert-warning {
  background-color: #000000;
}
.alert-danger {
  background-color: #000000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ed1c24;
  border-color: #ed1c24;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ed1c24;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fcd9da;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fcd9da;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #ed1c24 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #ed1c24;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ed1c24;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ed1c24;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ed1c24;
  border-bottom-color: #ed1c24;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ed1c24 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ed1c24' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFAA5oUu2Y {
  z-index: 1000;
  width: 100%;
}
.cid-sFAA5oUu2Y nav.navbar {
  position: fixed;
}
.cid-sFAA5oUu2Y .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #ed1c24 !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #000000 !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRB3fkpjBZ .modal-body .close {
  background: #1b1b1b;
}
.cid-uRB3fkpjBZ .modal-body .close span {
  font-style: normal;
}
.cid-uRB3fkpjBZ .carousel-inner > .active,
.cid-uRB3fkpjBZ .carousel-inner > .next,
.cid-uRB3fkpjBZ .carousel-inner > .prev {
  display: flex;
}
.cid-uRB3fkpjBZ .carousel-control .icon-next,
.cid-uRB3fkpjBZ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uRB3fkpjBZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uRB3fkpjBZ .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRB3fkpjBZ .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uRB3fkpjBZ .boxed-slider > div {
  position: relative;
}
.cid-uRB3fkpjBZ .container img {
  width: 100%;
}
.cid-uRB3fkpjBZ .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uRB3fkpjBZ .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uRB3fkpjBZ .mbr-table-cell {
  padding: 0;
}
.cid-uRB3fkpjBZ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uRB3fkpjBZ .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uRB3fkpjBZ .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uRB3fkpjBZ .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uRB3fkpjBZ .carousel-item.active.right,
.cid-uRB3fkpjBZ .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uRB3fkpjBZ .carousel-item.active.left,
.cid-uRB3fkpjBZ .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uRB3fkpjBZ .carousel-item.active,
.cid-uRB3fkpjBZ .carousel-item.next.left,
.cid-uRB3fkpjBZ .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uRB3fkpjBZ .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: #232323;
  opacity: .8;
  border-radius: 0;
  transition: all .3s;
  z-index: 11;
}
.cid-uRB3fkpjBZ .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 0;
}
.cid-uRB3fkpjBZ .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 0;
}
.cid-uRB3fkpjBZ .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
.cid-uRB3fkpjBZ .mbr-slider .carousel-control:hover {
  background-color: #ed1c24;
}
@media (max-width: 767px) {
  .cid-uRB3fkpjBZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uRB3fkpjBZ .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uRB3fkpjBZ .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uRB3fkpjBZ .mbr-slider .carousel-indicators li.active,
.cid-uRB3fkpjBZ .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
  background-color: #ed1c24;
}
.cid-uRB3fkpjBZ .mbr-slider .carousel-indicators li::after,
.cid-uRB3fkpjBZ .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uRB3fkpjBZ .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uRB3fkpjBZ .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uRB3fkpjBZ .mbr-slider > .container img {
  width: 100%;
}
.cid-uRB3fkpjBZ .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uRB3fkpjBZ .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uRB3fkpjBZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRB3fkpjBZ .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uRB3fkpjBZ .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uRB3fkpjBZ .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uRB3fkpjBZ .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uRB3fkpjBZ .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uRB3fkpjBZ .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uRB3fkpjBZ .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uRB3fkpjBZ .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uRB3fkpjBZ .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uRB3fkpjBZ .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uRB3fkpjBZ H2 {
  color: #ffffff;
}
.cid-uRB3fkpjBZ P {
  color: #ffffff;
}
.cid-uUsmsunE8o {
  background-color: #ffffff;
}
.cid-uUsmsunE8o .mbr-section-title,
.cid-uUsmsunE8o .mbr-section-subtitle {
  color: #000000;
}
.cid-uUsmsunE8o .mbr-section-text {
  color: #232323;
}
.cid-uUsmsunE8o .mbr-text,
.cid-uUsmsunE8o .typed-text,
.cid-uUsmsunE8o .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uUsmsunE8o .btn {
  margin-left: 4px !important;
}
.cid-uUsmsunE8o .animated-element {
  color: #ed1c24;
}
.cid-uUsmsunE8o .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ed1c24;
}
.cid-uUsmsunE8o .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uUsmsunE8o .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uUsmsunE8o .typed-text,
  .cid-uUsmsunE8o .mbr-section-subtitle,
  .cid-uUsmsunE8o .mbr-section-text,
  .cid-uUsmsunE8o .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uUsmsunE8o .mbr-section-text,
.cid-uUsmsunE8o .mbr-section-btn {
  color: #000000;
}
.cid-uUsmsunE8o .mbr-section-subtitle,
.cid-uUsmsunE8o .typed-text {
  color: #000000;
}
.cid-uRBTvG4cfe {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/whatsapp-image-2025-07-30-at-09.51.14-1599x899.jpg");
}
.cid-uRBTvG4cfe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRBTvG4cfe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRBTvG4cfe H2 {
  color: #ffffff;
}
.cid-uRBTvG4cfe .mbr-text,
.cid-uRBTvG4cfe .img-align {
  color: #ffffff;
}
.cid-uRBBZgGE9u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRBBZgGE9u .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uRBBZgGE9u .text-wrapper {
    padding: 2rem;
  }
}
.cid-uRBBZgGE9u .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uRBBZgGE9u .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-uRBBZgGE9u .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #0e0e0e;
}
.cid-uRBBZgGE9u .name {
  margin-top: 0.70rem;
  color: #000000;
  text-align: left;
}
.cid-uRBBZgGE9u .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-uRBBZgGE9u .mbr-text,
.cid-uRBBZgGE9u .mbr-section-data {
  text-align: left;
}
.cid-uRBBZgGE9u .mbr-text,
.cid-uRBBZgGE9u .mbr-section-btn {
  text-align: left;
  color: #8d8d8d;
}
.cid-uRBBZgGE9u .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-uRBBZgGE9u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRBBZgGE9u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRBEF893pm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/whatsapp-image-2025-07-30-at-09.44.36-1599x899.jpg");
}
.cid-uRBEF893pm .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uRBEF893pm .row {
  flex-direction: row-reverse;
}
.cid-uRBEF893pm .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-uRBEF893pm .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uRBEF893pm .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uRBEF893pm .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.cid-uRBEF893pm .mbr-text,
.cid-uRBEF893pm .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uRBEF893pm .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uRBObsI7KT {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uRBObsI7KT img,
.cid-uRBObsI7KT .item-img {
  width: 100%;
}
.cid-uRBObsI7KT .item:focus,
.cid-uRBObsI7KT span:focus {
  outline: none;
}
.cid-uRBObsI7KT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uRBObsI7KT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRBObsI7KT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRBObsI7KT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRBObsI7KT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRBObsI7KT .mbr-section-title {
  color: #0e0e0e;
}
.cid-uRBObsI7KT .mbr-text,
.cid-uRBObsI7KT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uRBObsI7KT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uRBObsI7KT .item-subtitle {
  text-align: left;
}
.cid-uUsFMx8qA1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uUsFMx8qA1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUsFMx8qA1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUsCr0Ho5a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uUsCr0Ho5a .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uUsC8oxbMz {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRN3gRhGVA {
  padding-top: 90px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/whatsapp-image-2025-07-30-at-09.46.58-1599x899.jpg");
}
.cid-uRN3gRhGVA .mail {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  width: fit-content;
  display: inline-block;
  color: #ffffff;
  text-align: right;
}
.cid-uRN3gRhGVA .mail:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.1;
  left: 0;
}
.cid-uRN3gRhGVA .mail:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-uRN3gRhGVA .mail:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uRN3gRhGVA .mbr-text,
.cid-uRN3gRhGVA .mbr-section-btn {
  color: #ffffff;
}
.cid-uRN3gRhGVA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uRN3gRhGVA .card .card-wrapper {
  text-align: center;
}
.cid-uRN3gRhGVA .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  width: 100%;
  min-width: 100px;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
}
.cid-uRN3gRhGVA .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #ffffff;
}
.cid-uRN3gRhGVA .card .card-wrapper .card-box .card-text {
  color: #ffffff;
}
.cid-uRN3gRhGVA .buttons-wrap {
  text-align: center;
}
.cid-uRN3gRhGVA .buttons-wrap .mbr-section-btn {
  display: inline-block;
}
.cid-uRN3gRhGVA .buttons-wrap .mbr-section-btn .btn {
  padding-left: 39px;
  padding-right: 39px;
}
.cid-uRN3gRhGVA .buttons-wrap .mbr-section-btn .btn-success-outline {
  color: #ffffff;
}
.cid-uRN3gRhGVA .buttons-wrap .mbr-section-btn .btn-success-outline:hover {
  color: #000000;
}
.cid-uRN3gRhGVA .buttons-wrap .or {
  text-align: center;
  display: inline-block;
  margin-left: 25px;
  margin-right: 25px;
  vertical-align: sub;
}
@media (max-width: 768px) {
  .cid-uRN3gRhGVA .buttons-wrap .or {
    display: none;
  }
}
.cid-uRN3gRhGVA .mbr-section-title,
.cid-uRN3gRhGVA .col {
  color: #ffffff;
}
.cid-sFANq99njx {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-sFANq99njx .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFANq99njx .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sFANq99njx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sFANq99njx .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sFANq99njx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFANq99njx .card-title {
  color: #0e0e0e;
}
.cid-sFANq99njx .mbr-text,
.cid-sFANq99njx .mbr-section-btn {
  color: #0e0e0e;
}
.cid-uRC2K3nmBu {
  padding-top: 100px;
  background-image: url("../../../assets/images/whatsapp-image-2025-07-30-at-09.46.58-1599x899.jpg");
}
.cid-uRC2K3nmBu .container {
  margin-bottom: 15%;
}
.cid-uRC2K3nmBu .content-container .btn-bgr {
  z-index: 0;
}
.cid-uRC2K3nmBu .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #bbbbbb;
}
.cid-uRC2K3nmBu .icon-block-top span {
  background-color: #ed1c24;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
}
.cid-uRC2K3nmBu .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-uRC2K3nmBu .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-uRC2K3nmBu .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-uRC2K3nmBu .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-uRC2K3nmBu .mbr-text,
.cid-uRC2K3nmBu .box-item-text {
  color: #8d97ad;
}
.cid-uRC2K3nmBu .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-uRC2K3nmBu .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-uRC2K3nmBu .box-list li:last-child {
  border-bottom: none;
}
.cid-uRC2K3nmBu .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-uRC2K3nmBu .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-uRC2K3nmBu .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uRC2K3nmBu .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uRC2K3nmBu .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-uRC2K3nmBu .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-uRC2K3nmBu .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-uRC2K3nmBu .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-uRC2K3nmBu H1 {
  color: #ffffff;
}
.cid-uRC2K3nmBu .mbr-text {
  color: #ffffff;
}
.cid-uRC2K3nmBu .box-item-text,
.cid-uRC2K3nmBu .mbr-section-btn {
  color: #0e0e0e;
}
.cid-uRC2K3nmBu .box-item-title {
  color: #0e0e0e;
}
.cid-sFAOgbarYq {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-sFAOgbarYq .row {
    flex-direction: column-reverse;
  }
  .cid-sFAOgbarYq .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFAOgbarYq .google-map {
  height: 100%;
  position: relative;
}
.cid-sFAOgbarYq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFAOgbarYq .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFAOgbarYq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFAOgbarYq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sFAOgbarYq .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFAOgbarYq .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #bbbbbb;
}
.cid-sFAOgbarYq .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-sFAOgbarYq .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFAOgbarYq .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFAOgbarYq .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #ed1c24;
}
.cid-sFAOgbarYq .mbr-section-title {
  color: #0e0e0e;
}
.cid-sFAOgbarYq .mbr-section-subtitle {
  color: #05386b;
}
.cid-sFAOgbarYq .card-title {
  color: #0e0e0e;
}
.cid-sFAOgbarYq P {
  color: #000000;
}
.cid-uUsSB38gCD {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uUsSB38gCD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUsSB38gCD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUsSB38gCD .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ed1c24, #7c1117);
  box-shadow: 10px 10px 19px #0e0e0e, -10px -10px 19px #000000;
}
@media (max-width: 767px) {
  .cid-uUsSB38gCD .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uUsSB38gCD .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uUsSB38gCD .card-title {
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uUsSB38gCD .card-title {
    margin-bottom: 20px;
  }
}
.cid-uUsSB38gCD .card-subtitle {
  color: #ffffff;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uUsSB38gCD .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uUsSB38gCD .card-text {
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uUslfjrS1p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uUslfjrS1p .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uUslfjrS1p .row-element,
.cid-uUslfjrS1p .image-element {
  padding: 0;
}
.cid-uUslfjrS1p .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uUslfjrS1p .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uUslfjrS1p .text-content {
  padding: 3rem;
}
.cid-uUslfjrS1p .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uUslfjrS1p .text-content {
    padding: 2rem 1rem;
  }
  .cid-uUslfjrS1p .mbr-title,
  .cid-uUslfjrS1p .mbr-text,
  .cid-uUslfjrS1p .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uUslfjrS1p .mbr-text,
.cid-uUslfjrS1p .mbr-section-btn {
  color: #000000;
}
.cid-uUslfjrS1p .mbr-title {
  color: #4e1813;
}
.cid-uRCaMbcXM0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2025-07-30-at-09.57.58-1599x899.jpeg");
}
.cid-uRCaMbcXM0 .navbar-logo {
  width: 100px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uRCaMbcXM0 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uRCaMbcXM0 .socicon {
  font-size: 1.3rem;
  background: #ed1c24;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uRCaMbcXM0 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uRCaMbcXM0 .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-uRCaMbcXM0 .text2 {
  color: #000000;
  text-align: left;
}
.cid-uRCaMbcXM0 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-uRCaMbcXM0 .logo-title {
  text-align: center;
}
.cid-uRCaMbcXM0 .logo-sub-title {
  text-align: center;
}
.cid-uRCaMbcXM0 .links {
  text-align: center;
  color: #656565;
}
.cid-uRCaMbcXM0 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uRCaMbcXM0 .logo-title,
.cid-uRCaMbcXM0 .logo {
  color: #ffffff;
}
.cid-uRC9SNutSs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
