.btn {
  border-width: 2px;
}
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: 'Dancing Script', handwriting;
  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: #ffb5b5 !important;
}
.bg-success {
  background-color: #ffb5b5 !important;
}
.bg-info {
  background-color: #000000 !important;
}
.bg-warning {
  background-color: #0050e2 !important;
}
.bg-danger {
  background-color: #bbbbbb !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffb5b5 !important;
  border-color: #ffb5b5 !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: #ff5e5e !important;
  border-color: #ff5e5e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff5e5e !important;
  border-color: #ff5e5e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff8a8a !important;
  border-color: #ff8a8a !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: #ff3333 !important;
  border-color: #ff3333 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff3333 !important;
  border-color: #ff3333 !important;
}
.btn-info,
.btn-info: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-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.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-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffb5b5 !important;
  border-color: #ffb5b5 !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: #ff5e5e !important;
  border-color: #ff5e5e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ff5e5e !important;
  border-color: #ff5e5e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #0050e2 !important;
  border-color: #0050e2 !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: #00318b !important;
  border-color: #00318b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #00318b !important;
  border-color: #00318b !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !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: #ffb5b5;
  color: #ffb5b5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ff5e5e !important;
  background-color: transparent!important;
  border-color: #ff5e5e !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb5b5 !important;
  border-color: #ffb5b5 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff8a8a;
  color: #ff8a8a;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff3333 !important;
  background-color: transparent!important;
  border-color: #ff3333 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8a8a !important;
  border-color: #ff8a8a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #ffb5b5;
  color: #ffb5b5;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ff5e5e !important;
  background-color: transparent!important;
  border-color: #ff5e5e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb5b5 !important;
  border-color: #ffb5b5 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #0050e2;
  color: #0050e2;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #00318b !important;
  background-color: transparent!important;
  border-color: #00318b !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0050e2 !important;
  border-color: #0050e2 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #ffb5b5 !important;
}
.text-secondary {
  color: #ff8a8a !important;
}
.text-success {
  color: #ffb5b5 !important;
}
.text-info {
  color: #000000 !important;
}
.text-warning {
  color: #0050e2 !important;
}
.text-danger {
  color: #bbbbbb !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ff4f4f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff2424 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ff4f4f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #002c7c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #888888 !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: #ffb5b5;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #000000;
}
.alert-warning {
  background-color: #0050e2;
}
.alert-danger {
  background-color: #bbbbbb;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffb5b5;
  border-color: #ffb5b5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffb5b5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #afcbff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbfbfb;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.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: #ffb5b5 !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: #ffb5b5;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffb5b5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffb5b5;
}
.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: #ffb5b5;
  border-bottom-color: #ffb5b5;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffb5b5 !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: #ff8a8a !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='%23ffb5b5' %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-uRqe16zUmj {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-uRqe16zUmj .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-uRqe16zUmj .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-uRqe16zUmj .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-uRqe16zUmj .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-uRqe16zUmj .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-uRqe16zUmj .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uRqe16zUmj .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uRqe16zUmj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRqe16zUmj .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-uRqe16zUmj .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffb5b5;
}
.cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uRqe16zUmj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uRqe16zUmj .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uRqe16zUmj .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-uRqe16zUmj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uRqe16zUmj .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-uRqe16zUmj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uRqe16zUmj .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uRqe16zUmj .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-uRqe16zUmj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uRqe16zUmj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-uRqe16zUmj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uRqe16zUmj .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-uRqe16zUmj .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uRqe16zUmj .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-uRqe16zUmj .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-uRqe16zUmj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-uRqe16zUmj .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-uRqe16zUmj .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-uRqe16zUmj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRqe16zUmj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRqe16zUmj .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uRqe16zUmj .dropdown-item.active,
.cid-uRqe16zUmj .dropdown-item:active {
  background-color: transparent;
}
.cid-uRqe16zUmj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-uRqe16zUmj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRqe16zUmj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRqe16zUmj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uRqe16zUmj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uRqe16zUmj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRqe16zUmj ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uRqe16zUmj .navbar-buttons {
  text-align: center;
}
.cid-uRqe16zUmj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRqe16zUmj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-uRqe16zUmj .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-uRqe16zUmj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uRqe16zUmj .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-uRqe16zUmj .nav-link:hover,
.cid-uRqe16zUmj .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uRqe16zUmj .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-uRqe16zUmj .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-uRqe16zUmj .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-uRmLspXfzu {
  padding-top: 12rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/screenshot-2025-07-19-at-12.12.52-am.png");
}
.cid-uRmLspXfzu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRmLspXfzu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRmLspXfzu .row {
  margin: 0 -8px;
}
.cid-uRmLspXfzu .row .card {
  padding: 0 8px;
}
.cid-uRmLspXfzu .card-wrapper {
  position: relative;
  padding: 75px 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .cid-uRmLspXfzu .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uRmLspXfzu .card-wrapper {
    padding: 24px;
  }
}
.cid-uRmLspXfzu .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
}
.cid-uRmLspXfzu .card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .6;
}
.cid-uRmLspXfzu .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cid-uRmLspXfzu .card-wrapper .card-wrap .mbr-label {
  margin-bottom: 24px;
}
.cid-uRmLspXfzu .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uRmLspXfzu .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uRmLspXfzu .card-wrapper .card-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uRmLspXfzu .card-wrapper .card-wrap .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uRmLspXfzu .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRmLspXfzu .mbr-section-title {
  color: #2c2c26;
  text-align: center;
}
.cid-uRmLspXfzu .mbr-label {
  color: #63635d;
  text-align: center;
}
.cid-uRmLspXfzu .mbr-text,
.cid-uRmLspXfzu .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uRmLspXfzu .mbr-section-title,
.cid-uRmLspXfzu .mbr-section-btn {
  color: #ffb5b5;
}
.cid-uRmMKcIi3v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uRmMKcIi3v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRmMKcIi3v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRmMKcIi3v .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uRmMKcIi3v .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uRmMKcIi3v .items-wrapper {
  margin: 0 -10px;
}
.cid-uRmMKcIi3v .items-wrapper .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uRmMKcIi3v .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uRmMKcIi3v .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uRmMKcIi3v .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(52px);
}
.cid-uRmMKcIi3v .items-wrapper .item .item-wrapper {
  padding: 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uRmMKcIi3v .items-wrapper .item .item-wrapper {
    padding: 16px;
  }
}
.cid-uRmMKcIi3v .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uRmMKcIi3v .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 22px;
  }
}
.cid-uRmMKcIi3v .items-wrapper .item .item-wrapper .item-img img {
  height: 250px;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-uRmMKcIi3v .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uRmMKcIi3v .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uRmMKcIi3v .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRmMKcIi3v .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 80% 0%, #ffb5b5, #232323 50%);
}
.cid-uRmMKcIi3v .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 80% 0%, #ffb5b5, #232323 50%);
}
.cid-uRmMKcIi3v .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 80% 0%, #ffb5b5, #232323 50%);
}
.cid-uRmMKcIi3v .mbr-section-title,
.cid-uRmMKcIi3v .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uRmMKcIi3v .item-title {
  color: #ffffff;
}
.cid-uRmMKcIi3v .item-text {
  color: #ffffff;
}
.cid-uRmMKcIi3v .item-title,
.cid-uRmMKcIi3v .mbr-section-btn {
  color: #ffffff;
}
.cid-uRmVPBtnfZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uRmVPBtnfZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRmVPBtnfZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRmVPBtnfZ .row {
  justify-content: center;
}
.cid-uRmVPBtnfZ .image-wrapper img {
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uRmVPBtnfZ .image-wrapper img {
    height: 300px;
  }
}
.cid-uRmVPBtnfZ .card-wrapper {
  position: relative;
  padding: 64px;
  overflow: hidden;
  margin-top: -25%;
}
@media (max-width: 1440px) {
  .cid-uRmVPBtnfZ .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uRmVPBtnfZ .card-wrapper {
    padding: 24px;
    margin-top: 12px;
  }
}
.cid-uRmVPBtnfZ .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.cid-uRmVPBtnfZ .card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e5e5e5;
  opacity: .5;
  pointer-events: none;
}
.cid-uRmVPBtnfZ .card-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uRmVPBtnfZ .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uRmVPBtnfZ .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uRmVPBtnfZ .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uRmVPBtnfZ .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uRmVPBtnfZ .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uRmVPBtnfZ .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uRmVPBtnfZ .mbr-section-title {
  color: #2c2c26;
}
.cid-uRmVPBtnfZ .mbr-text,
.cid-uRmVPBtnfZ .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uRmVPBtnfZ .mbr-section-title,
.cid-uRmVPBtnfZ .mbr-section-btn {
  text-align: center;
}
.cid-uRoEVpTSMZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uRoEVpTSMZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRoEVpTSMZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRoEVpTSMZ .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uRoEVpTSMZ .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRoEVpTSMZ .title-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uRoEVpTSMZ .title-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-uRoEVpTSMZ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uRoEVpTSMZ .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uRoEVpTSMZ .mbr-section-subtitle {
    margin-bottom: 15px;
  }
}
.cid-uRoEVpTSMZ .mbr-text {
  margin-bottom: 30px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uRoEVpTSMZ .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-uRoEVpTSMZ .mbr-label {
  color: #000000;
}
.cid-uRoEVpTSMZ .mbr-section-title {
  color: #ffb5b5;
}
.cid-uRoEVpTSMZ .mbr-section-subtitle,
.cid-uRoEVpTSMZ .mbr-section-btn {
  color: #ffffff;
}
.cid-uRrFI7sflW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uRrFI7sflW .line {
  background-color: #ffb5b5;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uRrFI7sflW .mbr-text {
  color: #ffffff;
}
#custom-html-1l {
  /* Type valid CSS here */
}
#custom-html-1l div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1l p {
  font-size: 60px;
  color: #777;
}
.cid-uRrgFGIvkl {
  padding-top: 15px;
  padding-bottom: 30px;
  margin-top: -1px;
  overflow: hidden;
  border-bottom: 1px solid #7f8678;
  border-top: 1px solid #7f8678;
  background-color: #000000;
}
.cid-uRrgFGIvkl .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uRrgFGIvkl .copyright {
  margin-top: 0.5rem;
  color: #ffb5b5;
  flex-grow: 1;
  margin-right: 0.5rem;
}
.cid-uRrgFGIvkl .produced {
  margin-top: 0.5rem;
  color: #aa8800;
  flex-grow: 1;
}
.cid-uRqe16zUmj {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-uRqe16zUmj .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-uRqe16zUmj .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-uRqe16zUmj .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-uRqe16zUmj .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-uRqe16zUmj .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-uRqe16zUmj .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uRqe16zUmj .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uRqe16zUmj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRqe16zUmj .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-uRqe16zUmj .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffb5b5;
}
.cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uRqe16zUmj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uRqe16zUmj .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uRqe16zUmj .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-uRqe16zUmj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uRqe16zUmj .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-uRqe16zUmj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uRqe16zUmj .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uRqe16zUmj .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-uRqe16zUmj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uRqe16zUmj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-uRqe16zUmj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uRqe16zUmj .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-uRqe16zUmj .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uRqe16zUmj .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-uRqe16zUmj .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-uRqe16zUmj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-uRqe16zUmj .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-uRqe16zUmj .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-uRqe16zUmj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRqe16zUmj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRqe16zUmj .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uRqe16zUmj .dropdown-item.active,
.cid-uRqe16zUmj .dropdown-item:active {
  background-color: transparent;
}
.cid-uRqe16zUmj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-uRqe16zUmj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRqe16zUmj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRqe16zUmj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uRqe16zUmj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uRqe16zUmj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRqe16zUmj ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uRqe16zUmj .navbar-buttons {
  text-align: center;
}
.cid-uRqe16zUmj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRqe16zUmj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-uRqe16zUmj .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-uRqe16zUmj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uRqe16zUmj .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-uRqe16zUmj .nav-link:hover,
.cid-uRqe16zUmj .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uRqe16zUmj .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-uRqe16zUmj .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-uRqe16zUmj .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-uRnaoCaq5d {
  padding-top: 12rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uRnaoCaq5d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRnaoCaq5d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRnaoCaq5d .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-uRnaoCaq5d .items-wrapper .item {
  padding: 0 40px;
}
.cid-uRnaoCaq5d .item {
  margin-bottom: 40px;
}
.cid-uRnaoCaq5d .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uRnaoCaq5d .item .item-wrapper .item-content .title-wrapper {
  margin-bottom: 20px;
}
.cid-uRnaoCaq5d .item .item-wrapper .item-content .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uRnaoCaq5d .item .item-wrapper .item-content .title-wrapper .title-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
  color: #19171c;
  margin-right: 10px;
}
.cid-uRnaoCaq5d .item .item-wrapper .item-content .title-wrapper .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-uRnaoCaq5d .item .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.cid-uRnaoCaq5d .item-title,
.cid-uRnaoCaq5d .title-wrapper {
  color: #ffb5b5;
  text-align: center;
}
.cid-uRnaoCaq5d .item-text {
  color: #6e6e73;
  text-align: center;
}
.cid-uRnaoCaq5d .item-text,
.cid-uRnaoCaq5d .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uRnaOK7Omq {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uRnaOK7Omq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRnaOK7Omq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uRnaOK7Omq .container {
    padding: 0 24px;
  }
}
.cid-uRnaOK7Omq .main-row {
  margin: 0;
}
.cid-uRnaOK7Omq .main-row .card {
  padding: 0;
  border-radius: 0 !important;
  border-top: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uRnaOK7Omq .main-row .card {
    padding: 0;
  }
}
.cid-uRnaOK7Omq .content-wrapper {
  padding: 32px;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uRnaOK7Omq .content-wrapper {
    padding: 24px;
  }
}
.cid-uRnaOK7Omq .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uRnaOK7Omq .content-wrapper .mbr-section-title {
    text-align: left;
  }
}
.cid-uRnaOK7Omq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uRnaOK7Omq .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-uRnaOK7Omq .form-wrapper {
  border-left: 1px solid #ffffff;
  padding: 32px !important;
}
@media (max-width: 992px) {
  .cid-uRnaOK7Omq .form-wrapper {
    padding: 24px !important;
  }
}
.cid-uRnaOK7Omq .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-uRnaOK7Omq .dragArea.row .form-group {
  margin-bottom: 24px !important;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uRnaOK7Omq .dragArea.row .form-group {
    display: block;
  }
}
.cid-uRnaOK7Omq .dragArea.row .form-group .form-control {
  background-color: transparent;
  padding: 16px 20px;
  box-shadow: none;
  border: 1px solid #ffffff !important;
  border-bottom: 1px solid transparent !important;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uRnaOK7Omq .dragArea.row .form-group .form-control::placeholder {
  color: #ffb5b5;
}
.cid-uRnaOK7Omq .dragArea.row .form-group .form-control:hover,
.cid-uRnaOK7Omq .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border-bottom: 1px solid #ffffff !important;
}
.cid-uRnaOK7Omq .dragArea.row .form-group .form-control-label {
  margin-left: 48px;
}
@media (max-width: 992px) {
  .cid-uRnaOK7Omq .dragArea.row .form-group .form-control-label {
    margin-left: 24px;
  }
}
.cid-uRnaOK7Omq .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
  margin-left: 48px;
}
@media (max-width: 992px) {
  .cid-uRnaOK7Omq .dragArea.row .form-group .form-check {
    margin-left: 24px;
  }
}
.cid-uRnaOK7Omq .dragArea.row .form-group .form-check .form-check-input {
  background-color: #ff8a8a;
  border-color: #ff8a8a;
}
.cid-uRnaOK7Omq .dragArea.row .form-group textarea {
  min-height: 270px;
}
.cid-uRnaOK7Omq .dragArea.row .mbr-section-btn {
  margin-top: 32px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uRnaOK7Omq .dragArea.row .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-uRnaOK7Omq .mbr-section-title {
  color: #ffb5b5;
  text-align: right;
}
.cid-uRnaOK7Omq .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-uRnaOK7Omq label {
  color: #F9F6E0;
}
.cid-uRrgFGIvkl {
  padding-top: 15px;
  padding-bottom: 30px;
  margin-top: -1px;
  overflow: hidden;
  border-bottom: 1px solid #7f8678;
  border-top: 1px solid #7f8678;
  background-color: #000000;
}
.cid-uRrgFGIvkl .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uRrgFGIvkl .copyright {
  margin-top: 0.5rem;
  color: #ffb5b5;
  flex-grow: 1;
  margin-right: 0.5rem;
}
.cid-uRrgFGIvkl .produced {
  margin-top: 0.5rem;
  color: #aa8800;
  flex-grow: 1;
}
.cid-uRqe16zUmj {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-uRqe16zUmj .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-uRqe16zUmj .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-uRqe16zUmj .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #000000;
  display: flex;
  flex-direction: column;
}
.cid-uRqe16zUmj .navbar.opened {
  transition: all 0.2s;
  background: #000000 !important;
}
.cid-uRqe16zUmj .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-uRqe16zUmj .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uRqe16zUmj .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uRqe16zUmj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRqe16zUmj .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-uRqe16zUmj .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #ffb5b5;
}
.cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uRqe16zUmj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uRqe16zUmj .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uRqe16zUmj .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-uRqe16zUmj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uRqe16zUmj .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uRqe16zUmj .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-uRqe16zUmj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uRqe16zUmj .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uRqe16zUmj .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-uRqe16zUmj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-uRqe16zUmj .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uRqe16zUmj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-uRqe16zUmj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uRqe16zUmj .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-uRqe16zUmj .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uRqe16zUmj .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-uRqe16zUmj .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-uRqe16zUmj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-uRqe16zUmj .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-uRqe16zUmj .navbar-brand {
  height: 3rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-uRqe16zUmj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRqe16zUmj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRqe16zUmj .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uRqe16zUmj .dropdown-item.active,
.cid-uRqe16zUmj .dropdown-item:active {
  background-color: transparent;
}
.cid-uRqe16zUmj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-uRqe16zUmj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRqe16zUmj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRqe16zUmj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uRqe16zUmj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uRqe16zUmj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRqe16zUmj ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uRqe16zUmj .navbar-buttons {
  text-align: center;
}
.cid-uRqe16zUmj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-uRqe16zUmj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-uRqe16zUmj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRqe16zUmj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-uRqe16zUmj .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-uRqe16zUmj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uRqe16zUmj .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-uRqe16zUmj .nav-link:hover,
.cid-uRqe16zUmj .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uRqe16zUmj .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-uRqe16zUmj .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-uRqe16zUmj .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-uRoC5pFwsg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uRoC5pFwsg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRoC5pFwsg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRoC5pFwsg .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #ffffff;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-uRoC5pFwsg .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uRoC5pFwsg .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uRoC5pFwsg .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uRoC5pFwsg .content-wrapper .panel-group .card {
  position: relative;
  padding: 24px;
  background-color: transparent;
  border: 1px solid #ffffff;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uRoC5pFwsg .content-wrapper .panel-group .card {
    padding: 14px;
  }
}
.cid-uRoC5pFwsg .content-wrapper .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uRoC5pFwsg .content-wrapper .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uRoC5pFwsg .content-wrapper .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uRoC5pFwsg .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  background-color: #ffb5b5;
  border-radius: 100%;
}
.cid-uRoC5pFwsg .content-wrapper .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 26px;
  color: #080813;
}
.cid-uRoC5pFwsg .content-wrapper .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uRoC5pFwsg .content-wrapper .panel-group .card .panel-collapse .panel-body {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .cid-uRoC5pFwsg .content-wrapper .panel-group .card .panel-collapse .panel-body {
    margin-top: 14px;
  }
}
.cid-uRoC5pFwsg .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uRoC5pFwsg .content-wrapper .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uRoC5pFwsg .mbr-section-title {
  color: #ffb5b5;
  text-align: center;
}
.cid-uRoC5pFwsg .panel-title-edit {
  color: #ffffff;
}
.cid-uRoC5pFwsg .panel-text {
  color: #ffffff;
}
.cid-uRrgFGIvkl {
  padding-top: 15px;
  padding-bottom: 30px;
  margin-top: -1px;
  overflow: hidden;
  border-bottom: 1px solid #7f8678;
  border-top: 1px solid #7f8678;
  background-color: #000000;
}
.cid-uRrgFGIvkl .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uRrgFGIvkl .copyright {
  margin-top: 0.5rem;
  color: #ffb5b5;
  flex-grow: 1;
  margin-right: 0.5rem;
}
.cid-uRrgFGIvkl .produced {
  margin-top: 0.5rem;
  color: #aa8800;
  flex-grow: 1;
}
