body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #da0000 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #000000 !important;
}
.bg-danger {
  background-color: #da0000 !important;
}
.btn-primary,
.btn-primary: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-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.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-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #da0000 !important;
  border-color: #da0000 !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: #830000 !important;
  border-color: #830000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #830000 !important;
  border-color: #830000 !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: #da0000 !important;
  border-color: #da0000 !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: #830000 !important;
  border-color: #830000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #830000 !important;
  border-color: #830000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #da0000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #830000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #da0000 !important;
  border-color: #da0000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #da0000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #830000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #da0000 !important;
  border-color: #da0000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #da0000 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #000000 !important;
}
.text-danger {
  color: #da0000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #740000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #740000 !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: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #000000;
}
.alert-danger {
  background-color: #da0000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffa7a7;
}
.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: #b3b3b3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffa7a7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #ffffff !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='%23000000' %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-unYFeW4cOF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-unYFeW4cOF nav.navbar {
  position: fixed;
}
.cid-unYFeW4cOF .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-unYFeW4cOF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-unYFeW4cOF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-unYFeW4cOF .dropdown-item:hover,
.cid-unYFeW4cOF .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-unYFeW4cOF .dropdown-item:hover span {
  color: white;
}
.cid-unYFeW4cOF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-unYFeW4cOF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-unYFeW4cOF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-unYFeW4cOF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unYFeW4cOF .nav-link {
  position: relative;
}
.cid-unYFeW4cOF .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-unYFeW4cOF .container {
    flex-wrap: wrap;
  }
}
.cid-unYFeW4cOF .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-unYFeW4cOF .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-unYFeW4cOF .iconfont-wrapper {
  color: #da0000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-unYFeW4cOF .dropdown-menu,
.cid-unYFeW4cOF .navbar.opened {
  background: #000000 !important;
}
.cid-unYFeW4cOF .nav-item:focus,
.cid-unYFeW4cOF .nav-link:focus {
  outline: none;
}
.cid-unYFeW4cOF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unYFeW4cOF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unYFeW4cOF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unYFeW4cOF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unYFeW4cOF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unYFeW4cOF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unYFeW4cOF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-unYFeW4cOF .navbar.opened {
  transition: all 0.3s;
}
.cid-unYFeW4cOF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-unYFeW4cOF .navbar .navbar-logo img {
  width: auto;
}
.cid-unYFeW4cOF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-unYFeW4cOF .navbar.collapsed {
  justify-content: center;
}
.cid-unYFeW4cOF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unYFeW4cOF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-unYFeW4cOF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.8rem);
  }
}
.cid-unYFeW4cOF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unYFeW4cOF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unYFeW4cOF .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-unYFeW4cOF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unYFeW4cOF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-unYFeW4cOF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-unYFeW4cOF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unYFeW4cOF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unYFeW4cOF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unYFeW4cOF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unYFeW4cOF .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-unYFeW4cOF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unYFeW4cOF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unYFeW4cOF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-unYFeW4cOF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unYFeW4cOF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unYFeW4cOF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-unYFeW4cOF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-unYFeW4cOF .navbar.navbar-short {
  min-height: 60px;
}
.cid-unYFeW4cOF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unYFeW4cOF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-unYFeW4cOF .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-unYFeW4cOF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unYFeW4cOF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unYFeW4cOF .dropdown-item.active,
.cid-unYFeW4cOF .dropdown-item:active {
  background-color: transparent;
}
.cid-unYFeW4cOF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unYFeW4cOF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unYFeW4cOF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unYFeW4cOF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-unYFeW4cOF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unYFeW4cOF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unYFeW4cOF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-unYFeW4cOF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-unYFeW4cOF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-unYFeW4cOF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #da0000;
}
.cid-unYFeW4cOF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unYFeW4cOF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unYFeW4cOF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unYFeW4cOF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unYFeW4cOF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unYFeW4cOF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unYFeW4cOF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unYFeW4cOF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unYFeW4cOF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-unYFeW4cOF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unYFeW4cOF .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-unYFeW4cOF .navbar {
    height: 70px;
  }
  .cid-unYFeW4cOF .navbar.opened {
    height: auto;
  }
  .cid-unYFeW4cOF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unYFeW4cOF .one-edge-shadow {
  -webkit-box-shadow: 0 8px 6px -6px #da0000;
  -moz-box-shadow: 0 8px 6px -6px #da0000;
  box-shadow: 0 8px 6px -6px #da0000;
}
.cid-unYAeXEaiq {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
  background-attachment: fixed;
}
.cid-unYAeXEaiq .mbr-fallback-image.disabled {
  display: none;
}
.cid-unYAeXEaiq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-unYAeXEaiq .container {
    padding: 0 22px;
  }
}
.cid-unYAeXEaiq .title-wrapper .mbr-section-title {
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-unYAeXEaiq .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-unYAeXEaiq .content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unYAeXEaiq .content-wrapper img {
  position: absolute;
  width: 200vh;
  object-fit: cover;
  height: 92%;
}
.cid-unYAeXEaiq .box {
  width: 90%;
  margin: 0 auto;
}
.cid-unYAeXEaiq .box .mbr-media {
  position: relative;
  overflow: hidden;
  height: 680px;
  border-radius: 20px !important;
  border: 20px solid #da0000;
  box-shadow: 0 64px 50px -50px #da0000;
}
@media (max-width: 992px) {
  .cid-unYAeXEaiq .box .mbr-media {
    height: 350px;
  }
}
.cid-unYAeXEaiq .box .mbr-media img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cid-unYAeXEaiq .box .mbr-media .mbr-iconfont {
  font-size: 24px;
  color: #da0000;
  transition: all 0.3s ease-in-out;
  margin-left: 4px;
}
.cid-unYAeXEaiq .mbr-media {
  position: relative;
}
.cid-unYAeXEaiq .mbr-media img {
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-unYAeXEaiq a:hover {
  background-image: none !important;
}
.cid-unYAeXEaiq .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 72px;
  width: 72px;
  border-radius: 100%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.cid-unYAeXEaiq .icon-wrap:hover,
.cid-unYAeXEaiq .icon-wrap:focus {
  cursor: pointer;
  background-color: #da0000;
}
.cid-unYAeXEaiq .icon-wrap:hover .mbr-iconfont,
.cid-unYAeXEaiq .icon-wrap:focus .mbr-iconfont {
  color: #000000;
}
.cid-unYAeXEaiq .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-unYAeXEaiq .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-unYAeXEaiq .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-unYAeXEaiq .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-unYAeXEaiq .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-unYAeXEaiq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-unYAeXEaiq .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-unYII0XRLM {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-unYII0XRLM .decor-wrap_2 {
  position: absolute;
  top: 12%;
  right: 82%;
  width: 1600px;
  height: 460px;
  background-color: #da0000;
  transform: skewX(-20deg);
}
.cid-unYII0XRLM .decor-wrap_2::before {
  content: '';
  position: absolute;
  width: 190px;
  height: 145px;
  bottom: -145px;
  right: -165px;
  background-color: #da0000;
  transform: skewX(-20deg);
}
.cid-unYII0XRLM .mbr-fallback-image.disabled {
  display: none;
}
.cid-unYII0XRLM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-unYII0XRLM .container {
    padding: 0 15px;
  }
}
.cid-unYII0XRLM .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-unYII0XRLM .image-wrapper {
  position: relative;
}
.cid-unYII0XRLM .image-wrapper .decor-wrap_1 {
  position: absolute;
  top: -10%;
  right: 38%;
  height: 49%;
  width: 65%;
  background-color: #ffffff;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-unYII0XRLM .image-wrapper {
    margin-bottom: 40px;
  }
}
.cid-unYII0XRLM .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 610px;
  width: 610px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1440px) {
  .cid-unYII0XRLM .image-wrapper img {
    width: 510px;
    height: 510px;
  }
}
@media (max-width: 992px) {
  .cid-unYII0XRLM .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 768px) {
  .cid-unYII0XRLM .image-wrapper img {
    width: 250px;
    height: 250px;
  }
}
.cid-unYII0XRLM .content-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
.cid-unYII0XRLM .content-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #f7f5f6;
}
.cid-unYII0XRLM .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 1440px) {
  .cid-unYII0XRLM .content-wrapper .mbr-text {
    margin-bottom: 30px;
  }
}
.cid-unYII0XRLM .content-wrapper .item-name {
  margin-bottom: 0;
}
.cid-unYII0XRLM .content-wrapper .item-role {
  margin-bottom: 0;
}
.cid-unYII0XRLM .mbr-text {
  color: #f7f5f6;
}
.cid-unYII0XRLM .item-name {
  color: #f7f5f6;
}
.cid-unYII0XRLM .item-role {
  color: #da0000;
}
.cid-unZFA6Nqfr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-unZFA6Nqfr .mbr-fallback-image.disabled {
  display: none;
}
.cid-unZFA6Nqfr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unZFA6Nqfr .row {
  justify-content: center;
}
.cid-unZFA6Nqfr .video-wrapper iframe {
  width: 100%;
}
.cid-unZFA6Nqfr .title-wrapper {
  margin-bottom: 32px;
}
.cid-unZFA6Nqfr .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-unZFA6Nqfr .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-unZFA6Nqfr .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ca41ec;
  z-index: -1;
}
.cid-unZFA6Nqfr .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-unZFA6Nqfr .video-block {
    margin-bottom: 24px;
  }
}
.cid-unZFA6Nqfr .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-unZFA6Nqfr .mbr-section-title {
  color: #f4efe8;
  text-align: center;
}
.cid-unYO5CP8JV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-unYO5CP8JV .mbr-fallback-image.disabled {
  display: none;
}
.cid-unYO5CP8JV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unYO5CP8JV .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-unYO5CP8JV .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-unYO5CP8JV .container {
    padding: 0 15px;
  }
}
.cid-unYO5CP8JV .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-unYO5CP8JV .row .card {
  justify-content: center;
}
.cid-unYO5CP8JV .image-wrapper {
  position: relative;
}
.cid-unYO5CP8JV .image-wrapper .decor-wrap_1 {
  position: absolute;
  top: -5%;
  left: -15%;
  height: 177px;
  width: 250px;
  background-color: #ec111a;
  transform: skewX(-20deg);
}
.cid-unYO5CP8JV .image-wrapper .decor-wrap_2 {
  position: absolute;
  bottom: -5%;
  right: -1%;
  height: 305px;
  width: 420px;
  background-color: #ec111a;
  transform: skewX(-20deg);
}
@media (max-width: 992px) {
  .cid-unYO5CP8JV .image-wrapper {
    margin-bottom: 60px;
  }
}
.cid-unYO5CP8JV .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 830px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-unYO5CP8JV .image-wrapper img {
    height: 350px;
  }
}
.cid-unYO5CP8JV .text-wrapper {
  padding: 0 0 0 118px;
  padding: 0 118px 0 0;
}
@media (max-width: 992px) {
  .cid-unYO5CP8JV .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-unYO5CP8JV .text-wrapper {
    padding: 0;
  }
}
.cid-unYO5CP8JV .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-unYO5CP8JV .mbr-text {
  color: #ffffff;
}
.cid-unYZ8juevs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-unYZ8juevs .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-unYZ8juevs .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-unYZ8juevs .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #da0000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-unYZ8juevs .mbr-section-title {
  text-align: center;
}
.cid-unZzuD8Rq7 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-unZzuD8Rq7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unZzuD8Rq7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unZzuD8Rq7 .mbr-section-title {
  color: #da0000;
}
.cid-uryWe6IqQZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uryWe6IqQZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uryWe6IqQZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uryWe6IqQZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uryWe6IqQZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uryWe6IqQZ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uryWe6IqQZ .mbr-text {
  color: #ffffff;
}
.cid-uryWe6IqQZ .name {
  color: #da0000;
}
.cid-urtB6fqco3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-urtB6fqco3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urtB6fqco3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urtB6fqco3 .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-urtB6fqco3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-urtB6fqco3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-urtB6fqco3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urtB6fqco3 .mbr-text {
  color: #ffffff;
}
.cid-urtB6fqco3 .name {
  color: #da0000;
}
.cid-urhxQCpEy3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-urhxQCpEy3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urhxQCpEy3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-urhxQCpEy3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-urhxQCpEy3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-urhxQCpEy3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urhxQCpEy3 .mbr-text {
  color: #ffffff;
}
.cid-urhxQCpEy3 .name {
  color: #da0000;
}
.cid-urhtWrOAFs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-urhtWrOAFs .mbr-fallback-image.disabled {
  display: none;
}
.cid-urhtWrOAFs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urhtWrOAFs .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-urhtWrOAFs .text-wrapper {
    padding: 2rem;
  }
}
.cid-urhtWrOAFs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-urhtWrOAFs .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urhtWrOAFs .mbr-text {
  color: #ffffff;
}
.cid-urhtWrOAFs .name {
  color: #da0000;
}
.cid-urhqZFI5jf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-urhqZFI5jf .mbr-fallback-image.disabled {
  display: none;
}
.cid-urhqZFI5jf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-urhqZFI5jf .text-wrapper {
    padding: 2rem;
  }
}
.cid-urhqZFI5jf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-urhqZFI5jf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urhqZFI5jf .mbr-text {
  color: #ffffff;
}
.cid-urhqZFI5jf .name {
  color: #da0000;
}
.cid-urhoq9g5rU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-urhoq9g5rU .mbr-fallback-image.disabled {
  display: none;
}
.cid-urhoq9g5rU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urhoq9g5rU .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-urhoq9g5rU .text-wrapper {
    padding: 2rem;
  }
}
.cid-urhoq9g5rU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-urhoq9g5rU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urhoq9g5rU .mbr-text {
  color: #ffffff;
}
.cid-urhoq9g5rU .name {
  color: #da0000;
}
.cid-urhhAvZPjO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-urhhAvZPjO .mbr-fallback-image.disabled {
  display: none;
}
.cid-urhhAvZPjO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-urhhAvZPjO .text-wrapper {
    padding: 2rem;
  }
}
.cid-urhhAvZPjO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-urhhAvZPjO .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urhhAvZPjO .mbr-text {
  color: #ffffff;
}
.cid-urhhAvZPjO .name {
  color: #da0000;
}
.cid-urhiyBN2Ro {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-urhiyBN2Ro .mbr-fallback-image.disabled {
  display: none;
}
.cid-urhiyBN2Ro .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urhiyBN2Ro .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-urhiyBN2Ro .text-wrapper {
    padding: 2rem;
  }
}
.cid-urhiyBN2Ro .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-urhiyBN2Ro .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urhiyBN2Ro .mbr-text {
  color: #ffffff;
}
.cid-urhiyBN2Ro .name {
  color: #da0000;
}
.cid-urhiizw1HD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-urhiizw1HD .mbr-fallback-image.disabled {
  display: none;
}
.cid-urhiizw1HD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-urhiizw1HD .text-wrapper {
    padding: 2rem;
  }
}
.cid-urhiizw1HD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-urhiizw1HD .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urhiizw1HD .mbr-text {
  color: #ffffff;
}
.cid-urhiizw1HD .name {
  color: #da0000;
}
.cid-uqOATu7bqN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-uqOATu7bqN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqOATu7bqN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqOATu7bqN .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uqOATu7bqN .text-wrapper {
    padding: 2rem;
  }
}
.cid-uqOATu7bqN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uqOATu7bqN .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqOATu7bqN .mbr-text {
  color: #ffffff;
}
.cid-uqOATu7bqN .name {
  color: #da0000;
}
.cid-uqOAkcuu0P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uqOAkcuu0P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqOAkcuu0P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqOAkcuu0P .text-wrapper {
    padding: 2rem;
  }
}
.cid-uqOAkcuu0P .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uqOAkcuu0P .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqOAkcuu0P .mbr-text {
  color: #ffffff;
}
.cid-uqOAkcuu0P .name {
  color: #da0000;
}
.cid-uqCOZmDsvx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-uqCOZmDsvx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqCOZmDsvx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqCOZmDsvx .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uqCOZmDsvx .text-wrapper {
    padding: 2rem;
  }
}
.cid-uqCOZmDsvx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uqCOZmDsvx .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqCOZmDsvx .mbr-text {
  color: #ffffff;
}
.cid-uqCOZmDsvx .name {
  color: #da0000;
}
.cid-uqCOryNKI2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uqCOryNKI2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqCOryNKI2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqCOryNKI2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uqCOryNKI2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uqCOryNKI2 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqCOryNKI2 .mbr-text {
  color: #ffffff;
}
.cid-uqCOryNKI2 .name {
  color: #da0000;
}
.cid-uqwWSQBWMq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-uqwWSQBWMq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqwWSQBWMq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqwWSQBWMq .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uqwWSQBWMq .text-wrapper {
    padding: 2rem;
  }
}
.cid-uqwWSQBWMq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uqwWSQBWMq .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqwWSQBWMq .mbr-text {
  color: #ffffff;
}
.cid-uqwWSQBWMq .name {
  color: #da0000;
}
.cid-uqwW45n3Sf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uqwW45n3Sf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqwW45n3Sf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqwW45n3Sf .text-wrapper {
    padding: 2rem;
  }
}
.cid-uqwW45n3Sf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uqwW45n3Sf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqwW45n3Sf .mbr-text {
  color: #ffffff;
}
.cid-uqwW45n3Sf .name {
  color: #da0000;
}
.cid-uqkG3Aodbu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-uqkG3Aodbu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqkG3Aodbu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqkG3Aodbu .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uqkG3Aodbu .text-wrapper {
    padding: 2rem;
  }
}
.cid-uqkG3Aodbu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uqkG3Aodbu .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqkG3Aodbu .mbr-text {
  color: #ffffff;
}
.cid-uqkG3Aodbu .name {
  color: #da0000;
}
.cid-uqkFGs24ZQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uqkFGs24ZQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqkFGs24ZQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqkFGs24ZQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uqkFGs24ZQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uqkFGs24ZQ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqkFGs24ZQ .mbr-text {
  color: #ffffff;
}
.cid-uqkFGs24ZQ .name {
  color: #da0000;
}
.cid-uqeNATF5LS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-uqeNATF5LS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqeNATF5LS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqeNATF5LS .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uqeNATF5LS .text-wrapper {
    padding: 2rem;
  }
}
.cid-uqeNATF5LS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uqeNATF5LS .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqeNATF5LS .mbr-text {
  color: #ffffff;
}
.cid-uqeNATF5LS .name {
  color: #da0000;
}
.cid-uqeNgsxCoA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uqeNgsxCoA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqeNgsxCoA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqeNgsxCoA .text-wrapper {
    padding: 2rem;
  }
}
.cid-uqeNgsxCoA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uqeNgsxCoA .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqeNgsxCoA .mbr-text {
  color: #ffffff;
}
.cid-uqeNgsxCoA .name {
  color: #da0000;
}
.cid-upRzEhOdY6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-upRzEhOdY6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upRzEhOdY6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upRzEhOdY6 .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-upRzEhOdY6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-upRzEhOdY6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-upRzEhOdY6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-upRzEhOdY6 .mbr-text {
  color: #ffffff;
}
.cid-upRzEhOdY6 .name {
  color: #da0000;
}
.cid-uoVNBmyNt8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uoVNBmyNt8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoVNBmyNt8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uoVNBmyNt8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uoVNBmyNt8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uoVNBmyNt8 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoVNBmyNt8 .mbr-text {
  color: #ffffff;
}
.cid-uoVNBmyNt8 .name {
  color: #da0000;
}
.cid-uoKrrFfD0u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-uoKrrFfD0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoKrrFfD0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoKrrFfD0u .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uoKrrFfD0u .text-wrapper {
    padding: 2rem;
  }
}
.cid-uoKrrFfD0u .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uoKrrFfD0u .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoKrrFfD0u .mbr-text {
  color: #ffffff;
}
.cid-uoKrrFfD0u .name {
  color: #da0000;
}
.cid-uoKmKy2LRh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uoKmKy2LRh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoKmKy2LRh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uoKmKy2LRh .text-wrapper {
    padding: 2rem;
  }
}
.cid-uoKmKy2LRh .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uoKmKy2LRh .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoKmKy2LRh .mbr-text {
  color: #ffffff;
}
.cid-uoKmKy2LRh .name {
  color: #da0000;
}
.cid-uoEfJXdCYm {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-uoEfJXdCYm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoEfJXdCYm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoEfJXdCYm .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uoEfJXdCYm .text-wrapper {
    padding: 2rem;
  }
}
.cid-uoEfJXdCYm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uoEfJXdCYm .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoEfJXdCYm .mbr-text {
  color: #ffffff;
}
.cid-uoEfJXdCYm .name {
  color: #da0000;
}
.cid-uoE5XZAH6N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uoE5XZAH6N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoE5XZAH6N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uoE5XZAH6N .text-wrapper {
    padding: 2rem;
  }
}
.cid-uoE5XZAH6N .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uoE5XZAH6N .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoE5XZAH6N .mbr-text {
  color: #ffffff;
}
.cid-uoE5XZAH6N .name {
  color: #da0000;
}
.cid-uoE0aozH4O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-uoE0aozH4O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoE0aozH4O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoE0aozH4O .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uoE0aozH4O .text-wrapper {
    padding: 2rem;
  }
}
.cid-uoE0aozH4O .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uoE0aozH4O .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoE0aozH4O .mbr-text {
  color: #ffffff;
}
.cid-uoE0aozH4O .name {
  color: #da0000;
}
.cid-uoDU385MKJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uoDU385MKJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoDU385MKJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uoDU385MKJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uoDU385MKJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uoDU385MKJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoDU385MKJ .mbr-text {
  color: #ffffff;
}
.cid-uoDU385MKJ .name {
  color: #da0000;
}
.cid-uoDItdptJw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-uoDItdptJw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoDItdptJw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoDItdptJw .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uoDItdptJw .text-wrapper {
    padding: 2rem;
  }
}
.cid-uoDItdptJw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uoDItdptJw .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoDItdptJw .mbr-text {
  color: #ffffff;
}
.cid-uoDItdptJw .name {
  color: #da0000;
}
.cid-uoa6bXn5dZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uoa6bXn5dZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoa6bXn5dZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uoa6bXn5dZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uoa6bXn5dZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uoa6bXn5dZ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoa6bXn5dZ .mbr-text {
  color: #ffffff;
}
.cid-uoa6bXn5dZ .name {
  color: #da0000;
}
.cid-uoa5fcoOa4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-uoa5fcoOa4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoa5fcoOa4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoa5fcoOa4 .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uoa5fcoOa4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uoa5fcoOa4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uoa5fcoOa4 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoa5fcoOa4 .mbr-text {
  color: #ffffff;
}
.cid-uoa5fcoOa4 .name {
  color: #da0000;
}
.cid-uoa4t2xwrN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-uoa4t2xwrN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoa4t2xwrN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uoa4t2xwrN .text-wrapper {
    padding: 2rem;
  }
}
.cid-uoa4t2xwrN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uoa4t2xwrN .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoa4t2xwrN .mbr-text {
  color: #ffffff;
}
.cid-uoa4t2xwrN .name {
  color: #da0000;
}
.cid-unZkyEtMvZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-unZkyEtMvZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-unZkyEtMvZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unZkyEtMvZ .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-unZkyEtMvZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-unZkyEtMvZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-unZkyEtMvZ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-unZkyEtMvZ .mbr-text {
  color: #ffffff;
}
.cid-unZkyEtMvZ .name {
  color: #da0000;
}
.cid-unZl2NFrxB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-unZl2NFrxB .mbr-fallback-image.disabled {
  display: none;
}
.cid-unZl2NFrxB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-unZl2NFrxB .text-wrapper {
    padding: 2rem;
  }
}
.cid-unZl2NFrxB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-unZl2NFrxB .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-unZl2NFrxB .mbr-text {
  color: #ffffff;
}
.cid-unZl2NFrxB .name {
  color: #da0000;
}
.cid-unZyA9otYx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg-1.png");
}
.cid-unZyA9otYx .mbr-fallback-image.disabled {
  display: none;
}
.cid-unZyA9otYx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unZyA9otYx .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-unZyA9otYx .text-wrapper {
    padding: 2rem;
  }
}
.cid-unZyA9otYx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-unZyA9otYx .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-unZyA9otYx .mbr-text {
  color: #ffffff;
}
.cid-unZyA9otYx .name {
  color: #da0000;
}
.cid-unZz7R1pa7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/red-white-bcg.png");
}
.cid-unZz7R1pa7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unZz7R1pa7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-unZz7R1pa7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-unZz7R1pa7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-unZz7R1pa7 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-unZz7R1pa7 .mbr-text {
  color: #ffffff;
}
.cid-unZz7R1pa7 .name {
  color: #da0000;
}
.cid-unZlHoSBgW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-unZlHoSBgW .mbr-fallback-image.disabled {
  display: none;
}
.cid-unZlHoSBgW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unZlHoSBgW .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-unZlHoSBgW .container-fluid {
    padding: 0 20px;
  }
}
.cid-unZlHoSBgW .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-unZlHoSBgW .container {
    padding: 0 20px;
  }
}
.cid-unZlHoSBgW .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-unZlHoSBgW .content-wrapper {
    padding: 46px 0;
  }
}
.cid-unZlHoSBgW .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-unZlHoSBgW .dragArea.row .mbr-section-title {
  margin-bottom: 32px !important;
}
.cid-unZlHoSBgW .dragArea.row .mbr-text {
  margin-bottom: 60px !important;
}
@media (max-width: 992px) {
  .cid-unZlHoSBgW .dragArea.row .mbr-text {
    margin-bottom: 46px !important;
  }
}
.cid-unZlHoSBgW .dragArea.row .form-group {
  margin-bottom: 46px !important;
}
.cid-unZlHoSBgW .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-unZlHoSBgW .dragArea.row .form-group .form-control {
  padding: 0 0 8px 0;
  border: none !important;
  border-bottom: 1px solid #dcdde0 !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
}
.cid-unZlHoSBgW .dragArea.row .form-group .form-control:hover,
.cid-unZlHoSBgW .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #000000 !important;
}
.cid-unZlHoSBgW .dragArea.row .form-group .form-control::placeholder {
  color: #dcdde0;
}
.cid-unZlHoSBgW .dragArea.row .form-group textarea {
  min-height: 150px;
}
.cid-unZlHoSBgW .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-unZlHoSBgW .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
  border-radius: 0;
}
.cid-unZlHoSBgW .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-unZlHoSBgW .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-unZlHoSBgW .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-unZlHoSBgW .mbr-text,
.cid-unZlHoSBgW .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-unZlHoSBgW label {
  color: #000000;
}
.cid-unZlHoSBgW .mbr-section-btn {
  text-align: center;
}
.cid-unZ6RT8brg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-unZ6RT8brg .mbr-fallback-image.disabled {
  display: none;
}
.cid-unZ6RT8brg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unZ6RT8brg [class^="socicon-"]:before,
.cid-unZ6RT8brg [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-unZ6RT8brg .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  border-width: 2px;
  transition: all .3s;
  border-color: #ffffff;
}
.cid-unZ6RT8brg .btn-social:hover {
  background: #ffffff;
}
.cid-unZ6RT8brg .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-unZ6RT8brg .mbr-section-title,
.cid-unZ6RT8brg .mbr-social-likes {
  color: #ffffff;
}
.cid-unZn52wdD2 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-unZn52wdD2 .fb-page,
.cid-unZn52wdD2 span,
.cid-unZn52wdD2 iframe {
  width: 500px;
  height: 920px;
}
.cid-unZn52wdD2 blockquote {
  display: none;
}
.cid-unZn52wdD2 .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-unZ784yFdi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/edenfield-countdown-hero.jpg");
}
.cid-unZ784yFdi .mbr-fallback-image.disabled {
  display: none;
}
.cid-unZ784yFdi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unZ784yFdi .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .container {
    padding: 0 26px;
  }
}
.cid-unZ784yFdi .row {
  justify-content: center;
}
.cid-unZ784yFdi .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-unZ784yFdi .title-wrapper .logo-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .title-wrapper .logo-wrapper {
    margin-bottom: 40px;
  }
}
.cid-unZ784yFdi .title-wrapper .logo-wrapper img {
  height: 90px;
  width: 90px;
  display: inline-flex;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-unZ784yFdi .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-unZ784yFdi .title-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-unZ784yFdi .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-unZ784yFdi .content-wrapper .nav-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .content-wrapper .nav-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.cid-unZ784yFdi .content-wrapper .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-unZ784yFdi .content-wrapper .nav-wrapper .list .item-wrap {
  margin: 0 50px 16px 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .content-wrapper .nav-wrapper .list .item-wrap {
    margin: 0 25px 16px 0;
  }
}
.cid-unZ784yFdi .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-unZ784yFdi .content-wrapper .nav-wrapper .list .item-wrap:focus {
  color: #da0000;
}
.cid-unZ784yFdi .content-wrapper .nav-wrapper .list .item-wrap:last-child {
  margin: 0 0 16px 0;
}
.cid-unZ784yFdi .content-wrapper .contacts-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .content-wrapper .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-unZ784yFdi .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .content-wrapper .contacts-wrapper .list {
    text-align: left;
  }
}
.cid-unZ784yFdi .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 0;
  font-family: "Instrument Serif", sans-serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  letter-spacing: -0.02em;
}
.cid-unZ784yFdi .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.cid-unZ784yFdi .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-unZ784yFdi .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-unZ784yFdi .content-wrapper .social-wrapper {
    text-align: left;
  }
}
.cid-unZ784yFdi .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-unZ784yFdi .content-wrapper .social-wrapper .social-wrap .soc-item:last-child a .mbr-iconfont {
  margin-right: 0;
}
.cid-unZ784yFdi .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-unZ784yFdi .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-unZ784yFdi .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-unZ784yFdi .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #da0000;
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  margin-right: 25px;
}
.cid-unZ784yFdi .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-unZ784yFdi .mbr-section-title {
  color: #ffffff;
}
.cid-unZ784yFdi .mbr-text {
  color: #ffffff;
}
.cid-unZ784yFdi .list {
  color: #ffffff;
}
.cid-unZ784yFdi .list,
.cid-unZ784yFdi .nav-wrapper,
.cid-unZ784yFdi .social-wrapper {
  text-align: right;
}
.cid-unZ784yFdi .mbr-section-title,
.cid-unZ784yFdi .logo-wrapper {
  color: #da0000;
}
