body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 4.6rem;
}
.display-2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
}
.display-7 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.68rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #74253d !important;
}
.bg-success {
  background-color: #f4962f !important;
}
.bg-info {
  background-color: #7237a2 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #f9f9f9 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #74253d !important;
  border-color: #74253d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #74253d !important;
  border-color: #74253d !important;
}
.btn-primary:before {
  background-color: #3a131e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #3a131e !important;
  border-color: #3a131e !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ef5341 !important;
  border-color: #ef5341 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #ef5341 !important;
  border-color: #ef5341 !important;
}
.btn-secondary:before {
  background-color: #d22612 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #d22612 !important;
  border-color: #d22612 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-info:before {
  background-color: #4a2469 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a2469 !important;
  border-color: #4a2469 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #f4962f !important;
  border-color: #f4962f !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #f4962f !important;
  border-color: #f4962f !important;
}
.btn-success:before {
  background-color: #cc700b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #cc700b !important;
  border-color: #cc700b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #f9f9f9 !important;
  border-color: #f9f9f9 !important;
  color: #7a7a7a !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #7a7a7a !important;
  background-color: #f9f9f9 !important;
  border-color: #f9f9f9 !important;
}
.btn-danger:before {
  background-color: #d3d3d3 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #7a7a7a !important;
  background-color: #d3d3d3 !important;
  border-color: #d3d3d3 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #270c14;
  color: #270c14;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #74253d;
}
.btn-primary-outline:before {
  background-color: #74253d;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #74253d !important;
  border-color: #74253d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #ba2110;
  color: #ba2110;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #ef5341;
}
.btn-secondary-outline:before {
  background-color: #ef5341;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ef5341 !important;
  border-color: #ef5341 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3c1d56;
  color: #3c1d56;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #7237a2;
}
.btn-info-outline:before {
  background-color: #7237a2;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #b46209;
  color: #b46209;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #f4962f;
}
.btn-success-outline:before {
  background-color: #f4962f;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f4962f !important;
  border-color: #f4962f !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #c6c6c6;
  color: #c6c6c6;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #7a7a7a;
  border-color: #f9f9f9;
}
.btn-danger-outline:before {
  background-color: #f9f9f9;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f9f9f9 !important;
  border-color: #f9f9f9 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #74253d;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #74253d !important;
}
.text-secondary {
  color: #ef5341 !important;
}
.text-success {
  color: #f4962f !important;
}
.text-info {
  color: #7237a2 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #f9f9f9 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #270c14 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ba2110 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #b46209 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3c1d56 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #c6c6c6 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #7237a2;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #f9f9f9;
}
.mbr-gallery-filter li.active .btn {
  background-color: #74253d;
  border-color: #74253d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #74253d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c85175;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fef8f1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b083d5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
blockquote {
  border-color: #74253d;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #74253d;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #74253d;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 7.36rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #74253d;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #74253d;
  border-bottom-color: #74253d;
}
.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: #74253d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ef5341 !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%;
}
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='%2374253d' %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;
}
.cid-rMSHzb1v1F .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-rMSHzb1v1F .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rMSHzb1v1F a {
  font-style: normal;
}
.cid-rMSHzb1v1F .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rMSHzb1v1F .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rMSHzb1v1F .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .content-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rMSHzb1v1F .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rMSHzb1v1F .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rMSHzb1v1F .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .nav-dropdown .link {
  font-weight: 400;
}
.cid-rMSHzb1v1F .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rMSHzb1v1F .content-right-side {
  text-align: center;
}
.cid-rMSHzb1v1F .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rMSHzb1v1F .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rMSHzb1v1F img {
    height: 3.8rem !important;
  }
  .cid-rMSHzb1v1F .btn {
    display: -webkit-flex;
  }
  .cid-rMSHzb1v1F button.navbar-toggler {
    display: block;
  }
  .cid-rMSHzb1v1F .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rMSHzb1v1F .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing,
  .cid-rMSHzb1v1F .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rMSHzb1v1F .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rMSHzb1v1F .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rMSHzb1v1F .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rMSHzb1v1F .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rMSHzb1v1F .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rMSHzb1v1F .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rMSHzb1v1F .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rMSHzb1v1F .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rMSHzb1v1F .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rMSHzb1v1F .navbar {
    display: block;
    padding: 0;
  }
  .cid-rMSHzb1v1F .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rMSHzb1v1F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMSHzb1v1F .navbar-toggler {
    display: none;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMSHzb1v1F .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rMSHzb1v1F .menu-logo {
  margin-right: auto;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rMSHzb1v1F .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMSHzb1v1F button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F button.navbar-toggler:focus {
  outline: none;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .btn {
  display: -webkit-flex;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMSHzb1v1F .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rMSHzb1v1F .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMSHzb1v1F .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rMSHzb1v1F .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rMSHzb1v1F .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rMSHzb1v1F .nav-link:focus {
  outline: none;
}
.cid-rMSHzb1v1F .navbar-toggler {
  position: relative;
}
.cid-rMSHzb1v1F .dropdown-item.active,
.cid-rMSHzb1v1F .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-rMSHzb1v1F .nav-link:hover,
.cid-rMSHzb1v1F .dropdown-item:hover {
  color: #74253d;
}
.cid-rMSHzb1v1F .widget-title,
.cid-rMSHzb1v1F .widget-icon {
  color: #ffffff;
}
.cid-rMSHzb1v1F .widget-text {
  color: #f9f9f9;
}
.cid-rMn2mcMoal {
  overflow: hidden !important;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-rMn2mcMoal .animated-element {
  color: #74253d;
}
.cid-rMn2mcMoal .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (min-width: 992px) {
  .cid-rMn2mcMoal .img-block {
    padding-right: 2rem;
  }
}
.cid-rMn2mcMoal .mbr-section-subtitle {
  color: #cccccc;
}
.cid-rMn2mcMoal .mbr-text,
.cid-rMn2mcMoal .mbr-section-btn {
  color: #f9f9f9;
}
.cid-rMn2mcMoal .mbr-section-title {
  color: #f9f9f9;
}
.cid-rVqdiShvZQ.popup-builder {
  background-color: #ffffff;
}
.cid-rVqdiShvZQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqdiShvZQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqdiShvZQ .modal-content,
.cid-rVqdiShvZQ .modal-dialog {
  height: auto;
}
.cid-rVqdiShvZQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqdiShvZQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqdiShvZQ .form-wrapper .mbr-form .form-group,
  .cid-rVqdiShvZQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqdiShvZQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqdiShvZQ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqdiShvZQ .mbr-text {
  text-align: center;
}
.cid-rVqdiShvZQ .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqdiShvZQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqdiShvZQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqdiShvZQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqdiShvZQ .modal-open {
  overflow: hidden;
}
.cid-rVqdiShvZQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqdiShvZQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqdiShvZQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqdiShvZQ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqdiShvZQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqdiShvZQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqdiShvZQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqdiShvZQ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqdiShvZQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqdiShvZQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqdiShvZQ .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqdiShvZQ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqdiShvZQ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqdiShvZQ .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqdiShvZQ .modal-header .close:focus {
  outline: none;
}
.cid-rVqdiShvZQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqdiShvZQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqdiShvZQ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqdiShvZQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqdiShvZQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqdiShvZQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqdiShvZQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqdiShvZQ .modal-sm {
    max-width: 300px;
  }
  .cid-rVqdiShvZQ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqdiShvZQ .modal-lg,
  .cid-rVqdiShvZQ .modal-xl {
    max-width: 800px;
  }
  .cid-rVqdiShvZQ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqdiShvZQ .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqdiShvZQ .container {
    max-width: 1140px;
  }
}
.cid-rVqdiShvZQ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqdiShvZQ .container {
    max-width: 720px;
  }
}
.cid-rVqdiShvZQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqdiShvZQ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqdiShvZQ .form-group {
  margin-bottom: 1rem;
}
.cid-rVqdiShvZQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqdiShvZQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqdiShvZQ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQ9HlyLES.popup-builder {
  background-color: #ffffff;
}
.cid-tsQ9HlyLES.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQ9HlyLES.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQ9HlyLES .modal-content,
.cid-tsQ9HlyLES .modal-dialog {
  height: auto;
}
.cid-tsQ9HlyLES .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQ9HlyLES .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQ9HlyLES .form-wrapper .mbr-form .form-group,
  .cid-tsQ9HlyLES .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQ9HlyLES .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQ9HlyLES .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQ9HlyLES .mbr-text {
  text-align: center;
}
.cid-tsQ9HlyLES .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQ9HlyLES .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQ9HlyLES .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQ9HlyLES .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQ9HlyLES .modal-open {
  overflow: hidden;
}
.cid-tsQ9HlyLES .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQ9HlyLES .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQ9HlyLES .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQ9HlyLES .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQ9HlyLES .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQ9HlyLES .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQ9HlyLES .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQ9HlyLES .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQ9HlyLES .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQ9HlyLES .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQ9HlyLES .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQ9HlyLES .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQ9HlyLES .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQ9HlyLES .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQ9HlyLES .modal-header {
    padding: 1rem;
  }
}
.cid-tsQ9HlyLES .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQ9HlyLES .modal-header .close svg {
  fill: #353535;
}
.cid-tsQ9HlyLES .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQ9HlyLES .modal-header .close:focus {
  outline: none;
}
.cid-tsQ9HlyLES .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQ9HlyLES .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQ9HlyLES .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQ9HlyLES .modal-body {
    padding: 1rem;
  }
}
.cid-tsQ9HlyLES .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQ9HlyLES .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQ9HlyLES .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQ9HlyLES .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQ9HlyLES .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQ9HlyLES .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQ9HlyLES .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQ9HlyLES .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQ9HlyLES .modal-lg,
  .cid-tsQ9HlyLES .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQ9HlyLES .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQ9HlyLES .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQ9HlyLES .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQ9HlyLES .form-group {
  margin-bottom: 1rem;
}
.cid-tsQ9HlyLES .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQ9HlyLES .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQ9HlyLES .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQ9HlyLES .mbr-section-btn {
  margin: 0;
}
.cid-tsQ9HlyLES .mbr-section-btn .btn {
  margin: 0;
}
.cid-qQoYShWgik {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #74253d, #000000);
}
.cid-qQoYShWgik a {
  text-align: center;
}
.cid-qQoYShWgik p {
  color: #0a0a0a;
  text-align: center;
}
.cid-qQoYShWgik span {
  font-size: 2rem;
}
.cid-qQoYShWgik .mbr-iconfont-social {
  font-size: 20px;
  width: 44px;
  padding-top: 6px;
  display: inline-block;
  line-height: 38px;
  border-radius: 50%;
}
.cid-qQoYShWgik .socicon-twitter {
  color: #4da7de;
}
.cid-qQoYShWgik .socicon-facebook {
  color: #3e5b98;
}
.cid-qQoYShWgik .socicon-googleplus {
  color: #dd4b39;
}
.cid-qQoYShWgik .socicon-instagram {
  color: #3f729b;
}
.cid-qQoYShWgik .social-list a:focus {
  text-decoration: none;
}
.cid-qQoYShWgik .text-copyright {
  width: 100%;
}
.cid-qQoYShWgik .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-qQoYShWgik .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-qQoYShWgik .logo-footer {
  line-height: normal;
}
.cid-qQoYShWgik .copyright {
  display: flex;
  align-items: center;
}
.cid-qQoYShWgik .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qQoYShWgik .media-container-row {
  align-items: center;
}
.cid-qQoYShWgik .media-container-row a {
  margin: 0 1rem;
}
.cid-qQoYShWgik P {
  color: #f9f9f9;
}
.cid-rMMvcSE5Yc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMMvcSE5Yc .container {
  max-width: 1500px;
}
.cid-rMMvcSE5Yc .row {
  background: #74253d;
}
.cid-rMMvcSE5Yc .img-col {
  padding: 0;
}
.cid-rMMvcSE5Yc .title-col {
  padding: 4rem 8rem;
}
.cid-rMMvcSE5Yc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-rMMvcSE5Yc h2 {
  padding: 0;
  margin: 0;
}
.cid-rMMvcSE5Yc .text-wrap {
  margin: auto;
}
.cid-rMMvcSE5Yc .mbr-text {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 1200px) {
  .cid-rMMvcSE5Yc .row {
    margin: 2rem;
  }
  .cid-rMMvcSE5Yc .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rMMvcSE5Yc .row {
    margin: 0rem;
  }
  .cid-rMMvcSE5Yc .title-col {
    padding: 2rem 1rem;
  }
}
.cid-rMMvcSE5Yc H2 {
  text-align: center;
}
.cid-sdzJU0PRc3 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/jtyamx1k-2000x1333.jpg");
}
.cid-sdzJU0PRc3 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-sdzJU0PRc3 .mbr-overlay {
  background: linear-gradient(#74253d -10%, #000000 75%);
}
.cid-qQjprRDT5k {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/sktiokui-2000x1333.jpg");
}
.cid-qQjprRDT5k .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-qQjprRDT5k .input {
  margin-bottom: 15px;
}
.cid-qQjprRDT5k .map {
  width: 100%;
  height: 30rem;
}
.cid-qQjprRDT5k .map iframe {
  width: inherit;
  height: 100%;
}
.cid-qQjprRDT5k .icon-block {
  margin-bottom: 10px;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-qQjprRDT5k .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-qQjprRDT5k .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  -webkit-align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-qQjprRDT5k .mbr-text {
  color: #767676;
}
.cid-qQjprRDT5k a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qQjprRDT5k .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qQjprRDT5k .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qQjprRDT5k .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-qQjprRDT5k .google-map {
  height: 25rem;
  position: relative;
}
.cid-qQjprRDT5k .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-qQjprRDT5k .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-qQjprRDT5k .google-map[data-state] {
  background: #e9e5dc;
}
.cid-qQjprRDT5k .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-qQjprRDT5k h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qQjprRDT5k .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qQjprRDT5k .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-qQjprRDT5k .google-map {
    padding-bottom: 2rem;
  }
}
.cid-qQjprRDT5k H2 {
  color: #ffffff;
}
.cid-rVqcg78bjq {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rVqcg78bjq .mbr-section-subtitle {
  color: #767676;
}
.cid-rVqcg78bjq ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqcg78bjq ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rVqcg78bjq ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rVqcg78bjq ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rVqcg78bjq .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rVqcg78bjq .mbr-section-title {
  color: #feffe3;
}
.cid-qQjuWLZN4u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-qQjuWLZN4u p {
  text-align: center;
}
.cid-qQjuWLZN4u .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-qQjuWLZN4u .btn-underline:hover {
  color: #505050;
}
.cid-qQjuWLZN4u .btn-underline:before {
  background-color: #505050;
}
.cid-qQjuWLZN4u .social-list a:focus {
  text-decoration: none;
}
.cid-qQjuWLZN4u .text-copyright {
  width: 100%;
}
.cid-qQjuWLZN4u .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-qQjuWLZN4u .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-qQjuWLZN4u .logo-footer {
  line-height: normal;
}
.cid-qQjuWLZN4u .copyright {
  display: flex;
  align-items: center;
}
.cid-qQjuWLZN4u .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qQjuWLZN4u .mbr-section-btn {
  font-size: 16px;
}
.cid-qQjuWLZN4u .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rMMxH5Ek0e {
  background-image: url("../../../assets/images/278617447-10224376590795604-2602251687123152572-n-2000x1126.jpg");
}
.cid-rMMxH5Ek0e .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
}
.cid-rMMxH5Ek0e .mbr-section-title {
  color: #232323;
}
.cid-rMMxH5Ek0e .mbr-text {
  color: #232323;
  letter-spacing: 5px;
  font-weight: 100;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMMxH5Ek0e .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-rMQ7ynHGjo {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMQ7ynHGjo .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
}
.cid-rMQ7ynHGjo .mbr-section-title {
  color: #232323;
}
.cid-rMQ7ynHGjo .mbr-text {
  color: #232323;
  letter-spacing: 5px;
  font-weight: 100;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMQ7ynHGjo .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-rMQ7U2ltTC {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMQ7U2ltTC .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
}
.cid-rMQ7U2ltTC .mbr-section-title {
  color: #232323;
}
.cid-rMQ7U2ltTC .mbr-text {
  color: #232323;
  letter-spacing: 5px;
  font-weight: 100;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMQ7U2ltTC .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-r53ImzSMvU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-r53ImzSMvU .block-title B {
  color: #feffe3;
}
.cid-tsWRCdYQG5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-tsWRCdYQG5 p {
  text-align: center;
}
.cid-tsWRCdYQG5 .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsWRCdYQG5 .btn-underline:hover {
  color: #505050;
}
.cid-tsWRCdYQG5 .btn-underline:before {
  background-color: #505050;
}
.cid-tsWRCdYQG5 .social-list a:focus {
  text-decoration: none;
}
.cid-tsWRCdYQG5 .text-copyright {
  width: 100%;
}
.cid-tsWRCdYQG5 .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-tsWRCdYQG5 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsWRCdYQG5 .logo-footer {
  line-height: normal;
}
.cid-tsWRCdYQG5 .copyright {
  display: flex;
  align-items: center;
}
.cid-tsWRCdYQG5 .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsWRCdYQG5 .mbr-section-btn {
  font-size: 16px;
}
.cid-tsWRCdYQG5 .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rMSHzb1v1F .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-rMSHzb1v1F .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rMSHzb1v1F a {
  font-style: normal;
}
.cid-rMSHzb1v1F .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rMSHzb1v1F .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rMSHzb1v1F .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .content-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rMSHzb1v1F .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rMSHzb1v1F .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rMSHzb1v1F .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .nav-dropdown .link {
  font-weight: 400;
}
.cid-rMSHzb1v1F .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rMSHzb1v1F .content-right-side {
  text-align: center;
}
.cid-rMSHzb1v1F .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rMSHzb1v1F .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rMSHzb1v1F img {
    height: 3.8rem !important;
  }
  .cid-rMSHzb1v1F .btn {
    display: -webkit-flex;
  }
  .cid-rMSHzb1v1F button.navbar-toggler {
    display: block;
  }
  .cid-rMSHzb1v1F .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rMSHzb1v1F .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing,
  .cid-rMSHzb1v1F .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rMSHzb1v1F .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rMSHzb1v1F .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rMSHzb1v1F .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rMSHzb1v1F .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rMSHzb1v1F .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rMSHzb1v1F .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rMSHzb1v1F .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rMSHzb1v1F .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rMSHzb1v1F .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rMSHzb1v1F .navbar {
    display: block;
    padding: 0;
  }
  .cid-rMSHzb1v1F .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rMSHzb1v1F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMSHzb1v1F .navbar-toggler {
    display: none;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMSHzb1v1F .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rMSHzb1v1F .menu-logo {
  margin-right: auto;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rMSHzb1v1F .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMSHzb1v1F button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F button.navbar-toggler:focus {
  outline: none;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .btn {
  display: -webkit-flex;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMSHzb1v1F .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rMSHzb1v1F .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMSHzb1v1F .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rMSHzb1v1F .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rMSHzb1v1F .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rMSHzb1v1F .nav-link:focus {
  outline: none;
}
.cid-rMSHzb1v1F .navbar-toggler {
  position: relative;
}
.cid-rMSHzb1v1F .dropdown-item.active,
.cid-rMSHzb1v1F .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-rMSHzb1v1F .nav-link:hover,
.cid-rMSHzb1v1F .dropdown-item:hover {
  color: #74253d;
}
.cid-rMSHzb1v1F .widget-title,
.cid-rMSHzb1v1F .widget-icon {
  color: #ffffff;
}
.cid-rMSHzb1v1F .widget-text {
  color: #f9f9f9;
}
.cid-rVqiABtSyZ.popup-builder {
  background-color: #ffffff;
}
.cid-rVqiABtSyZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqiABtSyZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqiABtSyZ .modal-content,
.cid-rVqiABtSyZ .modal-dialog {
  height: auto;
}
.cid-rVqiABtSyZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqiABtSyZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqiABtSyZ .form-wrapper .mbr-form .form-group,
  .cid-rVqiABtSyZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqiABtSyZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqiABtSyZ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqiABtSyZ .mbr-text {
  text-align: center;
}
.cid-rVqiABtSyZ .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqiABtSyZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqiABtSyZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqiABtSyZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqiABtSyZ .modal-open {
  overflow: hidden;
}
.cid-rVqiABtSyZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqiABtSyZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqiABtSyZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqiABtSyZ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqiABtSyZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqiABtSyZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqiABtSyZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqiABtSyZ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqiABtSyZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqiABtSyZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqiABtSyZ .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqiABtSyZ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqiABtSyZ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqiABtSyZ .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqiABtSyZ .modal-header .close:focus {
  outline: none;
}
.cid-rVqiABtSyZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqiABtSyZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqiABtSyZ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqiABtSyZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqiABtSyZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqiABtSyZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqiABtSyZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqiABtSyZ .modal-sm {
    max-width: 300px;
  }
  .cid-rVqiABtSyZ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqiABtSyZ .modal-lg,
  .cid-rVqiABtSyZ .modal-xl {
    max-width: 800px;
  }
  .cid-rVqiABtSyZ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqiABtSyZ .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqiABtSyZ .container {
    max-width: 1140px;
  }
}
.cid-rVqiABtSyZ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqiABtSyZ .container {
    max-width: 720px;
  }
}
.cid-rVqiABtSyZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqiABtSyZ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqiABtSyZ .form-group {
  margin-bottom: 1rem;
}
.cid-rVqiABtSyZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqiABtSyZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqiABtSyZ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvxAtA.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvxAtA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvxAtA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvxAtA .modal-content,
.cid-tsQahvxAtA .modal-dialog {
  height: auto;
}
.cid-tsQahvxAtA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvxAtA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvxAtA .form-wrapper .mbr-form .form-group,
  .cid-tsQahvxAtA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvxAtA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvxAtA .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvxAtA .mbr-text {
  text-align: center;
}
.cid-tsQahvxAtA .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvxAtA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvxAtA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvxAtA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvxAtA .modal-open {
  overflow: hidden;
}
.cid-tsQahvxAtA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvxAtA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvxAtA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvxAtA .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvxAtA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvxAtA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvxAtA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvxAtA .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvxAtA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvxAtA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvxAtA .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvxAtA .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvxAtA .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvxAtA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvxAtA .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvxAtA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvxAtA .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvxAtA .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvxAtA .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvxAtA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvxAtA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvxAtA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvxAtA .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvxAtA .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvxAtA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvxAtA .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvxAtA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvxAtA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvxAtA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvxAtA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvxAtA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvxAtA .modal-lg,
  .cid-tsQahvxAtA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvxAtA .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvxAtA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvxAtA .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvxAtA .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvxAtA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvxAtA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvxAtA .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvxAtA .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvxAtA .mbr-section-btn .btn {
  margin: 0;
}
.cid-qRoCI1qaO1 {
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-qRoCI1qaO1 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-qRoCI1qaO1 .mbr-overlay {
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-qRoCI1qaO1 H1 {
  color: #f9f9f9;
}
.cid-rVjXi17Dqp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #74253d;
}
.cid-rVjXi17Dqp .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-rVjXi17Dqp .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-rVjXi17Dqp .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-rVjXi17Dqp .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-rVjXi17Dqp .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-rVjXi17Dqp .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-rVjXi17Dqp .inner-container {
    width: 100% !important;
  }
  .cid-rVjXi17Dqp .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-rVgqoOQ4Lq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVgqoOQ4Lq h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-rVgqoOQ4Lq .pt-4 {
  padding-top: 2rem!important;
}
.cid-rVgqoOQ4Lq .card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.cid-rVgqoOQ4Lq p {
  color: #767676;
  text-align: left;
}
.cid-rVgqoOQ4Lq .card-wrapper {
  height: 100%;
}
.cid-rVgqoOQ4Lq .container-fluid {
  max-width: 1600px;
}
.cid-rVgqoOQ4Lq img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rVgqoOQ4Lq h4 {
  margin: 0;
}
.cid-rVgqoOQ4Lq .icons {
  position: absolute;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  left: 30px;
  bottom: 20px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rVgqoOQ4Lq .mbr-iconfont {
  color: #f9f9f9;
  display: block;
  transition: all 0.3s;
  padding-bottom: 10px;
}
.cid-rVgqoOQ4Lq .mbr-iconfont:hover {
  color: #cccccc;
}
.cid-rVgqoOQ4Lq .card:hover h3 {
  background-size: 100% 100%;
}
.cid-rVgqoOQ4Lq .card:hover .icons {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rVgqoOQ4Lq .icons {
    opacity: 1;
  }
}
.cid-rVgqoOQ4Lq .name,
.cid-rVgqoOQ4Lq .title-align {
  text-align: center;
}
.cid-rVgqoOQ4Lq .card-title {
  text-align: center;
}
.cid-rVgqoOQ4Lq .maintitle {
  text-align: center;
}
.cid-rVmEZs9I7M {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #74253d;
}
.cid-rVmEZs9I7M .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-rVmEZs9I7M .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-rVmEZs9I7M .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-rVmEZs9I7M .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-rVmEZs9I7M .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-rVmEZs9I7M .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-rVmEZs9I7M .inner-container {
    width: 100% !important;
  }
  .cid-rVmEZs9I7M .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-rVmB4xb6UA {
  padding-top: 30px;
  padding-bottom: 0px;
}
.cid-rVmB4xb6UA .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-rVmB4xb6UA .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-rVmB4xb6UA .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #74253d;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-rVmB4xb6UA .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-rVmB4xb6UA .btn {
  margin: 0!important;
  transition: all 0.3s;
  opacity: 0;
}
.cid-rVmB4xb6UA .card {
  padding: 0!important;
  margin: 0;
  overflow: hidden;
  border-radius: 0 !important;
}
.cid-rVmB4xb6UA .card-title {
  color: #74253d;
  margin: 0;
  text-align: left;
}
.cid-rVmB4xb6UA .card-img {
  overflow: hidden!important;
  position: relative;
  border-radius: 0px;
}
.cid-rVmB4xb6UA .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: #232323;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.cid-rVmB4xb6UA .card-box {
  position: absolute;
  padding: 1.5rem 1.5rem;
  bottom: -24px;
  transition: all 0.3s;
  width: 100%;
  left: 0;
  z-index: 2;
}
.cid-rVmB4xb6UA .mbr-section-title,
.cid-rVmB4xb6UA .line-wrap {
  text-align: center;
}
.cid-rVmB4xb6UA .card-box > p,
.cid-rVmB4xb6UA .mbr-section-btn {
  text-align: left;
  color: #cccccc;
}
.cid-rVmH8Kh5cU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #74253d;
}
.cid-rVmH8Kh5cU .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-rVmH8Kh5cU .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-rVmH8Kh5cU .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-rVmH8Kh5cU .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-rVmH8Kh5cU .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-rVmH8Kh5cU .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-rVmH8Kh5cU .inner-container {
    width: 100% !important;
  }
  .cid-rVmH8Kh5cU .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-rVmFEGvAz6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVmFEGvAz6 h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-rVmFEGvAz6 .pt-4 {
  padding-top: 2rem!important;
}
.cid-rVmFEGvAz6 .card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.cid-rVmFEGvAz6 p {
  color: #767676;
  text-align: left;
}
.cid-rVmFEGvAz6 .card-wrapper {
  height: 100%;
}
.cid-rVmFEGvAz6 .container-fluid {
  max-width: 1600px;
}
.cid-rVmFEGvAz6 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rVmFEGvAz6 h4 {
  margin: 0;
}
.cid-rVmFEGvAz6 .icons {
  position: absolute;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  left: 30px;
  bottom: 20px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rVmFEGvAz6 .mbr-iconfont {
  color: #f9f9f9;
  display: block;
  transition: all 0.3s;
  padding-bottom: 10px;
}
.cid-rVmFEGvAz6 .mbr-iconfont:hover {
  color: #cccccc;
}
.cid-rVmFEGvAz6 .card:hover h3 {
  background-size: 100% 100%;
}
.cid-rVmFEGvAz6 .card:hover .icons {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rVmFEGvAz6 .icons {
    opacity: 1;
  }
}
.cid-rVmFEGvAz6 .name,
.cid-rVmFEGvAz6 .title-align {
  text-align: center;
}
.cid-rVmFEGvAz6 .card-title {
  text-align: center;
}
.cid-rVmFEGvAz6 .maintitle {
  text-align: center;
}
.cid-rVmMBepraq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #74253d;
}
.cid-rVmMBepraq .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-rVmMBepraq .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-rVmMBepraq .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-rVmMBepraq .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-rVmMBepraq .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-rVmMBepraq .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-rVmMBepraq .inner-container {
    width: 100% !important;
  }
  .cid-rVmMBepraq .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-rVmKFf5Cmm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVmKFf5Cmm h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-rVmKFf5Cmm .pt-4 {
  padding-top: 2rem!important;
}
.cid-rVmKFf5Cmm .card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.cid-rVmKFf5Cmm p {
  color: #767676;
  text-align: left;
}
.cid-rVmKFf5Cmm .card-wrapper {
  height: 100%;
}
.cid-rVmKFf5Cmm .container-fluid {
  max-width: 1600px;
}
.cid-rVmKFf5Cmm img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rVmKFf5Cmm h4 {
  margin: 0;
}
.cid-rVmKFf5Cmm .icons {
  position: absolute;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  left: 30px;
  bottom: 20px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rVmKFf5Cmm .mbr-iconfont {
  color: #f9f9f9;
  display: block;
  transition: all 0.3s;
  padding-bottom: 10px;
}
.cid-rVmKFf5Cmm .mbr-iconfont:hover {
  color: #cccccc;
}
.cid-rVmKFf5Cmm .card:hover h3 {
  background-size: 100% 100%;
}
.cid-rVmKFf5Cmm .card:hover .icons {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rVmKFf5Cmm .icons {
    opacity: 1;
  }
}
.cid-rVmKFf5Cmm .name,
.cid-rVmKFf5Cmm .title-align {
  text-align: center;
}
.cid-rVmKFf5Cmm .card-title {
  text-align: center;
}
.cid-rVmKFf5Cmm .maintitle {
  text-align: center;
}
.cid-rVmRUUXeAr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #74253d;
}
.cid-rVmRUUXeAr .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-rVmRUUXeAr .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-rVmRUUXeAr .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-rVmRUUXeAr .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-rVmRUUXeAr .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-rVmRUUXeAr .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-rVmRUUXeAr .inner-container {
    width: 100% !important;
  }
  .cid-rVmRUUXeAr .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-rVmRBHheoK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVmRBHheoK h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-rVmRBHheoK .pt-4 {
  padding-top: 2rem!important;
}
.cid-rVmRBHheoK .card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.cid-rVmRBHheoK p {
  color: #767676;
  text-align: left;
}
.cid-rVmRBHheoK .card-wrapper {
  height: 100%;
}
.cid-rVmRBHheoK .container-fluid {
  max-width: 1600px;
}
.cid-rVmRBHheoK img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rVmRBHheoK h4 {
  margin: 0;
}
.cid-rVmRBHheoK .icons {
  position: absolute;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  left: 30px;
  bottom: 20px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rVmRBHheoK .mbr-iconfont {
  color: #f9f9f9;
  display: block;
  transition: all 0.3s;
  padding-bottom: 10px;
}
.cid-rVmRBHheoK .mbr-iconfont:hover {
  color: #cccccc;
}
.cid-rVmRBHheoK .card:hover h3 {
  background-size: 100% 100%;
}
.cid-rVmRBHheoK .card:hover .icons {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rVmRBHheoK .icons {
    opacity: 1;
  }
}
.cid-rVmRBHheoK .name,
.cid-rVmRBHheoK .title-align {
  text-align: center;
}
.cid-rVmRBHheoK .card-title {
  text-align: center;
}
.cid-rVmRBHheoK .maintitle {
  text-align: center;
}
.cid-qScKJ7WPtY {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qScKJ7WPtY .mbr-section-subtitle {
  color: #767676;
}
.cid-qScKJ7WPtY .container-table {
  margin: 0 auto;
}
.cid-qScKJ7WPtY .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qScKJ7WPtY .dataTables_wrapper {
  display: block;
}
.cid-qScKJ7WPtY .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-qScKJ7WPtY table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-qScKJ7WPtY table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-qScKJ7WPtY table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-qScKJ7WPtY table td {
  border-top: 1px solid #cccccc;
}
.cid-qScKJ7WPtY table td:hover {
  color: #74253d;
}
.cid-qScKJ7WPtY table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-qScKJ7WPtY .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-qScKJ7WPtY .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-qScKJ7WPtY .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-qScKJ7WPtY .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-qScKJ7WPtY .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-qScKJ7WPtY .dataTables_filter {
    text-align: center;
  }
  .cid-qScKJ7WPtY .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-rVqdcWcGSG {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #74253d;
}
.cid-rVqdcWcGSG .mbr-section-subtitle {
  color: #767676;
}
.cid-rVqdcWcGSG ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqdcWcGSG ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rVqdcWcGSG ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rVqdcWcGSG ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rVqdcWcGSG .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rVqdcWcGSG .mbr-section-title {
  color: #feffe3;
}
.cid-tsWRfgDeON {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-tsWRfgDeON p {
  text-align: center;
}
.cid-tsWRfgDeON .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsWRfgDeON .btn-underline:hover {
  color: #505050;
}
.cid-tsWRfgDeON .btn-underline:before {
  background-color: #505050;
}
.cid-tsWRfgDeON .social-list a:focus {
  text-decoration: none;
}
.cid-tsWRfgDeON .text-copyright {
  width: 100%;
}
.cid-tsWRfgDeON .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-tsWRfgDeON .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsWRfgDeON .logo-footer {
  line-height: normal;
}
.cid-tsWRfgDeON .copyright {
  display: flex;
  align-items: center;
}
.cid-tsWRfgDeON .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsWRfgDeON .mbr-section-btn {
  font-size: 16px;
}
.cid-tsWRfgDeON .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rMSHzb1v1F .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-rMSHzb1v1F .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rMSHzb1v1F a {
  font-style: normal;
}
.cid-rMSHzb1v1F .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rMSHzb1v1F .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rMSHzb1v1F .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .content-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rMSHzb1v1F .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rMSHzb1v1F .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rMSHzb1v1F .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .nav-dropdown .link {
  font-weight: 400;
}
.cid-rMSHzb1v1F .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rMSHzb1v1F .content-right-side {
  text-align: center;
}
.cid-rMSHzb1v1F .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rMSHzb1v1F .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rMSHzb1v1F img {
    height: 3.8rem !important;
  }
  .cid-rMSHzb1v1F .btn {
    display: -webkit-flex;
  }
  .cid-rMSHzb1v1F button.navbar-toggler {
    display: block;
  }
  .cid-rMSHzb1v1F .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rMSHzb1v1F .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing,
  .cid-rMSHzb1v1F .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rMSHzb1v1F .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rMSHzb1v1F .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rMSHzb1v1F .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rMSHzb1v1F .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rMSHzb1v1F .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rMSHzb1v1F .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rMSHzb1v1F .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rMSHzb1v1F .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rMSHzb1v1F .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rMSHzb1v1F .navbar {
    display: block;
    padding: 0;
  }
  .cid-rMSHzb1v1F .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rMSHzb1v1F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMSHzb1v1F .navbar-toggler {
    display: none;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMSHzb1v1F .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rMSHzb1v1F .menu-logo {
  margin-right: auto;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rMSHzb1v1F .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMSHzb1v1F button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F button.navbar-toggler:focus {
  outline: none;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .btn {
  display: -webkit-flex;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMSHzb1v1F .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rMSHzb1v1F .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMSHzb1v1F .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rMSHzb1v1F .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rMSHzb1v1F .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rMSHzb1v1F .nav-link:focus {
  outline: none;
}
.cid-rMSHzb1v1F .navbar-toggler {
  position: relative;
}
.cid-rMSHzb1v1F .dropdown-item.active,
.cid-rMSHzb1v1F .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-rMSHzb1v1F .nav-link:hover,
.cid-rMSHzb1v1F .dropdown-item:hover {
  color: #74253d;
}
.cid-rMSHzb1v1F .widget-title,
.cid-rMSHzb1v1F .widget-icon {
  color: #ffffff;
}
.cid-rMSHzb1v1F .widget-text {
  color: #f9f9f9;
}
.cid-rVqiABuMPS.popup-builder {
  background-color: #ffffff;
}
.cid-rVqiABuMPS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqiABuMPS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqiABuMPS .modal-content,
.cid-rVqiABuMPS .modal-dialog {
  height: auto;
}
.cid-rVqiABuMPS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqiABuMPS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqiABuMPS .form-wrapper .mbr-form .form-group,
  .cid-rVqiABuMPS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqiABuMPS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqiABuMPS .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqiABuMPS .mbr-text {
  text-align: center;
}
.cid-rVqiABuMPS .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqiABuMPS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqiABuMPS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqiABuMPS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqiABuMPS .modal-open {
  overflow: hidden;
}
.cid-rVqiABuMPS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqiABuMPS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqiABuMPS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqiABuMPS .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqiABuMPS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqiABuMPS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqiABuMPS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqiABuMPS .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqiABuMPS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqiABuMPS .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqiABuMPS .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqiABuMPS .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqiABuMPS .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqiABuMPS .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqiABuMPS .modal-header .close:focus {
  outline: none;
}
.cid-rVqiABuMPS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqiABuMPS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqiABuMPS .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqiABuMPS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqiABuMPS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqiABuMPS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqiABuMPS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqiABuMPS .modal-sm {
    max-width: 300px;
  }
  .cid-rVqiABuMPS .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqiABuMPS .modal-lg,
  .cid-rVqiABuMPS .modal-xl {
    max-width: 800px;
  }
  .cid-rVqiABuMPS .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqiABuMPS .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqiABuMPS .container {
    max-width: 1140px;
  }
}
.cid-rVqiABuMPS .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqiABuMPS .container {
    max-width: 720px;
  }
}
.cid-rVqiABuMPS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqiABuMPS .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqiABuMPS .form-group {
  margin-bottom: 1rem;
}
.cid-rVqiABuMPS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqiABuMPS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqiABuMPS .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvyRna.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvyRna.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvyRna.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvyRna .modal-content,
.cid-tsQahvyRna .modal-dialog {
  height: auto;
}
.cid-tsQahvyRna .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvyRna .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvyRna .form-wrapper .mbr-form .form-group,
  .cid-tsQahvyRna .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvyRna .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvyRna .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvyRna .mbr-text {
  text-align: center;
}
.cid-tsQahvyRna .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvyRna .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvyRna .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvyRna .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvyRna .modal-open {
  overflow: hidden;
}
.cid-tsQahvyRna .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvyRna .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvyRna .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvyRna .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvyRna .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvyRna .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvyRna .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvyRna .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvyRna .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvyRna .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvyRna .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvyRna .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvyRna .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvyRna .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvyRna .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvyRna .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvyRna .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvyRna .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvyRna .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvyRna .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvyRna .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvyRna .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvyRna .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvyRna .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvyRna .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvyRna .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvyRna .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvyRna .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvyRna .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvyRna .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvyRna .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvyRna .modal-lg,
  .cid-tsQahvyRna .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvyRna .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvyRna .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvyRna .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvyRna .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvyRna .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvyRna .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvyRna .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvyRna .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvyRna .mbr-section-btn .btn {
  margin: 0;
}
.cid-qRovQfCzbU {
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-qRovQfCzbU .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-qRovQfCzbU .mbr-overlay {
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-qRovQfCzbU H1 {
  color: #f9f9f9;
}
.cid-qRoxOixZFw {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qRoxOixZFw h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-qRoxOixZFw .mbr-section-subtitle {
  color: #767676;
}
.cid-qRoxOixZFw .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-qRoxOixZFw .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-qRoxOixZFw H2 {
  color: #f9f9f9;
}
.cid-qRoxOixZFw .article-title-right {
  color: #f9f9f9;
}
.cid-qRoxOixZFw .article-title-left {
  color: #f9f9f9;
}
.cid-qRoxOixZFw .mbr-text-right {
  color: #f9f9f9;
}
.cid-qRoxOixZFw .mbr-text-left {
  color: #f9f9f9;
}
.cid-qRoxOixZFw .article-counter-right {
  color: #333333;
}
.cid-qRoxOixZFw .article-counter-left {
  color: #333333;
}
.cid-qRoxOWDHCM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #74253d;
}
.cid-qRoxOWDHCM h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-qRoxOWDHCM .mbr-section-subtitle {
  color: #767676;
}
.cid-qRoxOWDHCM .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-qRoxOWDHCM .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-qRoxOWDHCM .article-title-right B {
  color: #ffffff;
}
.cid-qRoxOWDHCM .mbr-text-right {
  color: #ffffff;
}
.cid-qRoxOWDHCM .article-title-right {
  color: #ffffff;
}
.cid-qRoxOWDHCM .article-title-left {
  color: #ffffff;
}
.cid-qRoxOWDHCM .mbr-text-left {
  color: #ffffff;
}
.cid-qRoxOWDHCM .article-counter-left {
  color: #8f5164;
}
.cid-qRoxOWDHCM .article-counter-right {
  color: #8f5164;
}
.cid-qRoxQqaQXg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-qRoxQqaQXg h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-qRoxQqaQXg .mbr-section-subtitle {
  color: #767676;
}
.cid-qRoxQqaQXg .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-qRoxQqaQXg .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-qRoxQqaQXg .article-counter-right {
  color: #333333;
}
.cid-qRoxQqaQXg .article-counter-left {
  color: #333333;
}
.cid-qRoxQqaQXg .article-title-right {
  color: #f9f9f9;
}
.cid-qRoxQqaQXg .article-title-left {
  color: #f9f9f9;
}
.cid-qRoxQqaQXg .mbr-text-right {
  color: #f9f9f9;
}
.cid-qRoxQqaQXg .mbr-text-left {
  color: #f9f9f9;
}
.cid-qRoxR0htf7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #74253d;
}
.cid-qRoxR0htf7 h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-qRoxR0htf7 .mbr-section-subtitle {
  color: #767676;
}
.cid-qRoxR0htf7 .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-qRoxR0htf7 .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-qRoxR0htf7 .article-counter-right {
  color: #8f5164;
}
.cid-qRoxR0htf7 .article-counter-left {
  color: #8f5164;
}
.cid-qRoxR0htf7 .mbr-text-left {
  color: #feffe3;
}
.cid-qRoxR0htf7 .article-title-left {
  color: #feffe3;
}
.cid-qRoxR0htf7 .article-title-right {
  color: #feffe3;
}
.cid-qRoxR0htf7 .mbr-text-right {
  color: #feffe3;
}
.cid-qRoxRzi4Xe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-qRoxRzi4Xe h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-qRoxRzi4Xe .mbr-section-subtitle {
  color: #767676;
}
.cid-qRoxRzi4Xe .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-qRoxRzi4Xe .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-qRoxRzi4Xe .article-counter-right {
  color: #333333;
}
.cid-qRoxRzi4Xe .article-counter-left {
  color: #333333;
}
.cid-qRoxRzi4Xe .article-title-right {
  color: #f9f9f9;
}
.cid-qRoxRzi4Xe .article-title-left {
  color: #f9f9f9;
}
.cid-qRoxRzi4Xe .mbr-text-right {
  color: #f9f9f9;
}
.cid-qRoxRzi4Xe .mbr-text-left {
  color: #f9f9f9;
}
.cid-qRoxS9HNtc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #74253d;
}
.cid-qRoxS9HNtc h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-qRoxS9HNtc .mbr-section-subtitle {
  color: #767676;
}
.cid-qRoxS9HNtc .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-qRoxS9HNtc .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-qRoxS9HNtc .article-counter-right {
  color: #8f5164;
}
.cid-qRoxS9HNtc .article-counter-left {
  color: #8f5164;
}
.cid-qRoxS9HNtc .article-title-right {
  color: #feffe3;
}
.cid-qRoxS9HNtc .article-title-left {
  color: #feffe3;
}
.cid-qRoxS9HNtc .mbr-text-left {
  color: #feffe3;
}
.cid-qRoxS9HNtc .mbr-text-right {
  color: #feffe3;
}
.cid-qRoxSFR7Ty {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-qRoxSFR7Ty h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-qRoxSFR7Ty .mbr-section-subtitle {
  color: #767676;
}
.cid-qRoxSFR7Ty .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-qRoxSFR7Ty .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-qRoxSFR7Ty .article-counter-right {
  color: #333333;
}
.cid-qRoxSFR7Ty .article-counter-left {
  color: #333333;
}
.cid-qRoxSFR7Ty .article-title-right {
  color: #f9f9f9;
}
.cid-qRoxSFR7Ty .mbr-text-right {
  color: #f9f9f9;
}
.cid-qRoxSFR7Ty .article-title-left {
  color: #f9f9f9;
}
.cid-qRoxSFR7Ty .mbr-text-left {
  color: #f9f9f9;
}
.cid-qRoxUFbP4z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qRoxUFbP4z .block-text {
  color: #f9f9f9;
}
.cid-rVqcTYnz2I {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rVqcTYnz2I .mbr-section-subtitle {
  color: #767676;
}
.cid-rVqcTYnz2I ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqcTYnz2I ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rVqcTYnz2I ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rVqcTYnz2I ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rVqcTYnz2I .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rVqcTYnz2I .mbr-section-title {
  color: #feffe3;
}
.cid-tsWR7DBxkf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-tsWR7DBxkf p {
  text-align: center;
}
.cid-tsWR7DBxkf .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsWR7DBxkf .btn-underline:hover {
  color: #505050;
}
.cid-tsWR7DBxkf .btn-underline:before {
  background-color: #505050;
}
.cid-tsWR7DBxkf .social-list a:focus {
  text-decoration: none;
}
.cid-tsWR7DBxkf .text-copyright {
  width: 100%;
}
.cid-tsWR7DBxkf .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-tsWR7DBxkf .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsWR7DBxkf .logo-footer {
  line-height: normal;
}
.cid-tsWR7DBxkf .copyright {
  display: flex;
  align-items: center;
}
.cid-tsWR7DBxkf .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsWR7DBxkf .mbr-section-btn {
  font-size: 16px;
}
.cid-tsWR7DBxkf .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rMSHzb1v1F .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-rMSHzb1v1F .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rMSHzb1v1F a {
  font-style: normal;
}
.cid-rMSHzb1v1F .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rMSHzb1v1F .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rMSHzb1v1F .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .content-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rMSHzb1v1F .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rMSHzb1v1F .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rMSHzb1v1F .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .nav-dropdown .link {
  font-weight: 400;
}
.cid-rMSHzb1v1F .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rMSHzb1v1F .content-right-side {
  text-align: center;
}
.cid-rMSHzb1v1F .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rMSHzb1v1F .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rMSHzb1v1F img {
    height: 3.8rem !important;
  }
  .cid-rMSHzb1v1F .btn {
    display: -webkit-flex;
  }
  .cid-rMSHzb1v1F button.navbar-toggler {
    display: block;
  }
  .cid-rMSHzb1v1F .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rMSHzb1v1F .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing,
  .cid-rMSHzb1v1F .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rMSHzb1v1F .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rMSHzb1v1F .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rMSHzb1v1F .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rMSHzb1v1F .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rMSHzb1v1F .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rMSHzb1v1F .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rMSHzb1v1F .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rMSHzb1v1F .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rMSHzb1v1F .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rMSHzb1v1F .navbar {
    display: block;
    padding: 0;
  }
  .cid-rMSHzb1v1F .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rMSHzb1v1F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMSHzb1v1F .navbar-toggler {
    display: none;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMSHzb1v1F .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rMSHzb1v1F .menu-logo {
  margin-right: auto;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rMSHzb1v1F .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMSHzb1v1F button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F button.navbar-toggler:focus {
  outline: none;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .btn {
  display: -webkit-flex;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMSHzb1v1F .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rMSHzb1v1F .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMSHzb1v1F .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rMSHzb1v1F .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rMSHzb1v1F .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rMSHzb1v1F .nav-link:focus {
  outline: none;
}
.cid-rMSHzb1v1F .navbar-toggler {
  position: relative;
}
.cid-rMSHzb1v1F .dropdown-item.active,
.cid-rMSHzb1v1F .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-rMSHzb1v1F .nav-link:hover,
.cid-rMSHzb1v1F .dropdown-item:hover {
  color: #74253d;
}
.cid-rMSHzb1v1F .widget-title,
.cid-rMSHzb1v1F .widget-icon {
  color: #ffffff;
}
.cid-rMSHzb1v1F .widget-text {
  color: #f9f9f9;
}
.cid-rVqiABunFm.popup-builder {
  background-color: #ffffff;
}
.cid-rVqiABunFm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqiABunFm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqiABunFm .modal-content,
.cid-rVqiABunFm .modal-dialog {
  height: auto;
}
.cid-rVqiABunFm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqiABunFm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqiABunFm .form-wrapper .mbr-form .form-group,
  .cid-rVqiABunFm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqiABunFm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqiABunFm .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqiABunFm .mbr-text {
  text-align: center;
}
.cid-rVqiABunFm .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqiABunFm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqiABunFm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqiABunFm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqiABunFm .modal-open {
  overflow: hidden;
}
.cid-rVqiABunFm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqiABunFm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqiABunFm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqiABunFm .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqiABunFm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqiABunFm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqiABunFm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqiABunFm .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqiABunFm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqiABunFm .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqiABunFm .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqiABunFm .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqiABunFm .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqiABunFm .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqiABunFm .modal-header .close:focus {
  outline: none;
}
.cid-rVqiABunFm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqiABunFm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqiABunFm .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqiABunFm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqiABunFm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqiABunFm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqiABunFm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqiABunFm .modal-sm {
    max-width: 300px;
  }
  .cid-rVqiABunFm .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqiABunFm .modal-lg,
  .cid-rVqiABunFm .modal-xl {
    max-width: 800px;
  }
  .cid-rVqiABunFm .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqiABunFm .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqiABunFm .container {
    max-width: 1140px;
  }
}
.cid-rVqiABunFm .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqiABunFm .container {
    max-width: 720px;
  }
}
.cid-rVqiABunFm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqiABunFm .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqiABunFm .form-group {
  margin-bottom: 1rem;
}
.cid-rVqiABunFm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqiABunFm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqiABunFm .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvz7Su.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvz7Su.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvz7Su.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvz7Su .modal-content,
.cid-tsQahvz7Su .modal-dialog {
  height: auto;
}
.cid-tsQahvz7Su .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvz7Su .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvz7Su .form-wrapper .mbr-form .form-group,
  .cid-tsQahvz7Su .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvz7Su .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvz7Su .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvz7Su .mbr-text {
  text-align: center;
}
.cid-tsQahvz7Su .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvz7Su .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvz7Su .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvz7Su .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvz7Su .modal-open {
  overflow: hidden;
}
.cid-tsQahvz7Su .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvz7Su .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvz7Su .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvz7Su .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvz7Su .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvz7Su .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvz7Su .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvz7Su .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvz7Su .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvz7Su .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvz7Su .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvz7Su .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvz7Su .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvz7Su .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvz7Su .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvz7Su .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvz7Su .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvz7Su .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvz7Su .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvz7Su .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvz7Su .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvz7Su .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvz7Su .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvz7Su .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvz7Su .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvz7Su .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvz7Su .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvz7Su .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvz7Su .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvz7Su .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvz7Su .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvz7Su .modal-lg,
  .cid-tsQahvz7Su .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvz7Su .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvz7Su .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvz7Su .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvz7Su .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvz7Su .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvz7Su .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvz7Su .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvz7Su .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvz7Su .mbr-section-btn .btn {
  margin: 0;
}
.cid-qQCPmYVJEw {
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-qQCPmYVJEw .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-qQCPmYVJEw .mbr-overlay {
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-qQCPmYVJEw H1 {
  color: #f9f9f9;
}
.cid-rMMz3z1zDK {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #efefef;
}
.cid-rMMz3z1zDK p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-rMMz3z1zDK .panel-title {
  border-bottom: 2px solid #767676;
}
.cid-rMMz3z1zDK .collapsed {
  border: none;
}
.cid-rMMz3z1zDK .panel-body {
  padding-top: 0.5rem;
}
.cid-rMMz3z1zDK .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rMMz3z1zDK .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #ffffff;
  padding: 0;
}
.cid-rMMz3z1zDK .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rMMz3z1zDK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rMMz3z1zDK .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-rMMz3z1zDK .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rMMz3z1zDK .panel-text {
  color: #333333;
}
.cid-rMMz3z1zDK H4 {
  color: #000000;
  text-transform: uppercase;
}
.cid-rMFPbnmrXp {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-rMFPbnmrXp p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-rMFPbnmrXp .panel-title {
  border-bottom: 2px solid #767676;
}
.cid-rMFPbnmrXp .collapsed {
  border: none;
}
.cid-rMFPbnmrXp .panel-body {
  padding-top: 0.5rem;
}
.cid-rMFPbnmrXp .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rMFPbnmrXp .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #ffffff;
  padding: 0;
}
.cid-rMFPbnmrXp .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rMFPbnmrXp .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rMFPbnmrXp .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-rMFPbnmrXp .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rMFPbnmrXp .panel-text {
  color: #333333;
}
.cid-rMFPbnmrXp H4 {
  color: #000000;
  text-transform: uppercase;
}
.cid-rMMzEOQSrm {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #efefef;
}
.cid-rMMzEOQSrm p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-rMMzEOQSrm .panel-title {
  border-bottom: 2px solid #767676;
}
.cid-rMMzEOQSrm .collapsed {
  border: none;
}
.cid-rMMzEOQSrm .panel-body {
  padding-top: 0.5rem;
}
.cid-rMMzEOQSrm .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rMMzEOQSrm .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #ffffff;
  padding: 0;
}
.cid-rMMzEOQSrm .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rMMzEOQSrm .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rMMzEOQSrm .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-rMMzEOQSrm .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rMMzEOQSrm .panel-text {
  color: #333333;
}
.cid-rMMzEOQSrm H4 {
  color: #000000;
  text-transform: uppercase;
}
.cid-rMMAihqP8H {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-rMMAihqP8H p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-rMMAihqP8H .panel-title {
  border-bottom: 2px solid #767676;
}
.cid-rMMAihqP8H .collapsed {
  border: none;
}
.cid-rMMAihqP8H .panel-body {
  padding-top: 0.5rem;
}
.cid-rMMAihqP8H .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rMMAihqP8H .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #ffffff;
  padding: 0;
}
.cid-rMMAihqP8H .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rMMAihqP8H .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rMMAihqP8H .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-rMMAihqP8H .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rMMAihqP8H .panel-text {
  color: #333333;
}
.cid-rMMAihqP8H H4 {
  color: #000000;
  text-transform: uppercase;
}
.cid-rMMBwdvNoG {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #efefef;
}
.cid-rMMBwdvNoG p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-rMMBwdvNoG .panel-title {
  border-bottom: 2px solid #767676;
}
.cid-rMMBwdvNoG .collapsed {
  border: none;
}
.cid-rMMBwdvNoG .panel-body {
  padding-top: 0.5rem;
}
.cid-rMMBwdvNoG .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rMMBwdvNoG .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #ffffff;
  padding: 0;
}
.cid-rMMBwdvNoG .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rMMBwdvNoG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rMMBwdvNoG .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-rMMBwdvNoG .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rMMBwdvNoG .panel-text {
  color: #333333;
}
.cid-rMMBwdvNoG H4 {
  color: #000000;
  text-transform: uppercase;
}
.cid-rMSHzb1v1F .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-rMSHzb1v1F .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rMSHzb1v1F a {
  font-style: normal;
}
.cid-rMSHzb1v1F .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rMSHzb1v1F .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rMSHzb1v1F .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .content-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rMSHzb1v1F .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rMSHzb1v1F .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rMSHzb1v1F .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .nav-dropdown .link {
  font-weight: 400;
}
.cid-rMSHzb1v1F .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rMSHzb1v1F .content-right-side {
  text-align: center;
}
.cid-rMSHzb1v1F .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rMSHzb1v1F .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rMSHzb1v1F img {
    height: 3.8rem !important;
  }
  .cid-rMSHzb1v1F .btn {
    display: -webkit-flex;
  }
  .cid-rMSHzb1v1F button.navbar-toggler {
    display: block;
  }
  .cid-rMSHzb1v1F .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rMSHzb1v1F .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing,
  .cid-rMSHzb1v1F .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rMSHzb1v1F .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rMSHzb1v1F .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rMSHzb1v1F .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rMSHzb1v1F .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rMSHzb1v1F .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rMSHzb1v1F .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rMSHzb1v1F .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rMSHzb1v1F .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rMSHzb1v1F .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rMSHzb1v1F .navbar {
    display: block;
    padding: 0;
  }
  .cid-rMSHzb1v1F .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rMSHzb1v1F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMSHzb1v1F .navbar-toggler {
    display: none;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMSHzb1v1F .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rMSHzb1v1F .menu-logo {
  margin-right: auto;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rMSHzb1v1F .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMSHzb1v1F button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F button.navbar-toggler:focus {
  outline: none;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .btn {
  display: -webkit-flex;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMSHzb1v1F .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rMSHzb1v1F .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMSHzb1v1F .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rMSHzb1v1F .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rMSHzb1v1F .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rMSHzb1v1F .nav-link:focus {
  outline: none;
}
.cid-rMSHzb1v1F .navbar-toggler {
  position: relative;
}
.cid-rMSHzb1v1F .dropdown-item.active,
.cid-rMSHzb1v1F .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-rMSHzb1v1F .nav-link:hover,
.cid-rMSHzb1v1F .dropdown-item:hover {
  color: #74253d;
}
.cid-rMSHzb1v1F .widget-title,
.cid-rMSHzb1v1F .widget-icon {
  color: #ffffff;
}
.cid-rMSHzb1v1F .widget-text {
  color: #f9f9f9;
}
.cid-tsWRYgGvF3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-tsWRYgGvF3 p {
  text-align: center;
}
.cid-tsWRYgGvF3 .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsWRYgGvF3 .btn-underline:hover {
  color: #505050;
}
.cid-tsWRYgGvF3 .btn-underline:before {
  background-color: #505050;
}
.cid-tsWRYgGvF3 .social-list a:focus {
  text-decoration: none;
}
.cid-tsWRYgGvF3 .text-copyright {
  width: 100%;
}
.cid-tsWRYgGvF3 .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-tsWRYgGvF3 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsWRYgGvF3 .logo-footer {
  line-height: normal;
}
.cid-tsWRYgGvF3 .copyright {
  display: flex;
  align-items: center;
}
.cid-tsWRYgGvF3 .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsWRYgGvF3 .mbr-section-btn {
  font-size: 16px;
}
.cid-tsWRYgGvF3 .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rVqiABvWks.popup-builder {
  background-color: #ffffff;
}
.cid-rVqiABvWks.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqiABvWks.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqiABvWks .modal-content,
.cid-rVqiABvWks .modal-dialog {
  height: auto;
}
.cid-rVqiABvWks .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqiABvWks .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqiABvWks .form-wrapper .mbr-form .form-group,
  .cid-rVqiABvWks .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqiABvWks .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqiABvWks .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqiABvWks .mbr-text {
  text-align: center;
}
.cid-rVqiABvWks .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqiABvWks .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqiABvWks .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqiABvWks .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqiABvWks .modal-open {
  overflow: hidden;
}
.cid-rVqiABvWks .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqiABvWks .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqiABvWks .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqiABvWks .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqiABvWks .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqiABvWks .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqiABvWks .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqiABvWks .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqiABvWks .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqiABvWks .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqiABvWks .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqiABvWks .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqiABvWks .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqiABvWks .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqiABvWks .modal-header .close:focus {
  outline: none;
}
.cid-rVqiABvWks .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqiABvWks .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqiABvWks .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqiABvWks .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqiABvWks .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqiABvWks .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqiABvWks .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqiABvWks .modal-sm {
    max-width: 300px;
  }
  .cid-rVqiABvWks .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqiABvWks .modal-lg,
  .cid-rVqiABvWks .modal-xl {
    max-width: 800px;
  }
  .cid-rVqiABvWks .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqiABvWks .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqiABvWks .container {
    max-width: 1140px;
  }
}
.cid-rVqiABvWks .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqiABvWks .container {
    max-width: 720px;
  }
}
.cid-rVqiABvWks .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqiABvWks .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqiABvWks .form-group {
  margin-bottom: 1rem;
}
.cid-rVqiABvWks .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqiABvWks .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqiABvWks .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvz3BD.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvz3BD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvz3BD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvz3BD .modal-content,
.cid-tsQahvz3BD .modal-dialog {
  height: auto;
}
.cid-tsQahvz3BD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvz3BD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvz3BD .form-wrapper .mbr-form .form-group,
  .cid-tsQahvz3BD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvz3BD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvz3BD .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvz3BD .mbr-text {
  text-align: center;
}
.cid-tsQahvz3BD .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvz3BD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvz3BD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvz3BD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvz3BD .modal-open {
  overflow: hidden;
}
.cid-tsQahvz3BD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvz3BD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvz3BD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvz3BD .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvz3BD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvz3BD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvz3BD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvz3BD .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvz3BD .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvz3BD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvz3BD .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvz3BD .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvz3BD .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvz3BD .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvz3BD .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvz3BD .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvz3BD .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvz3BD .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvz3BD .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvz3BD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvz3BD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvz3BD .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvz3BD .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvz3BD .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvz3BD .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvz3BD .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvz3BD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvz3BD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvz3BD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvz3BD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvz3BD .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvz3BD .modal-lg,
  .cid-tsQahvz3BD .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvz3BD .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvz3BD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvz3BD .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvz3BD .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvz3BD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvz3BD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvz3BD .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvz3BD .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvz3BD .mbr-section-btn .btn {
  margin: 0;
}
.cid-qRp9O5M2aM {
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-qRp9O5M2aM .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-qRp9O5M2aM .mbr-overlay {
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-qRp9O5M2aM H1 {
  color: #f9f9f9;
}
.cid-qRpbTUoWOp {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-qRpbTUoWOp .mbr-text {
  color: #767676;
}
.cid-qRpbTUoWOp h4 {
  font-weight: 500;
}
.cid-qRpbTUoWOp h4,
.cid-qRpbTUoWOp h5 {
  text-align: center;
}
.cid-qRpbTUoWOp p {
  text-align: center;
}
.cid-qRpbTUoWOp .card-box {
  text-align: center;
}
.cid-qRpbTUoWOp .card-img {
  font-size: 3rem;
}
.cid-qRpbTUoWOp .mbr-iconfont {
  color: #74253d;
}
.cid-rMSHzb1v1F .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-rMSHzb1v1F .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rMSHzb1v1F a {
  font-style: normal;
}
.cid-rMSHzb1v1F .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rMSHzb1v1F .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rMSHzb1v1F .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .content-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rMSHzb1v1F .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rMSHzb1v1F .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rMSHzb1v1F .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .nav-dropdown .link {
  font-weight: 400;
}
.cid-rMSHzb1v1F .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rMSHzb1v1F .content-right-side {
  text-align: center;
}
.cid-rMSHzb1v1F .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rMSHzb1v1F .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rMSHzb1v1F img {
    height: 3.8rem !important;
  }
  .cid-rMSHzb1v1F .btn {
    display: -webkit-flex;
  }
  .cid-rMSHzb1v1F button.navbar-toggler {
    display: block;
  }
  .cid-rMSHzb1v1F .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rMSHzb1v1F .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing,
  .cid-rMSHzb1v1F .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rMSHzb1v1F .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rMSHzb1v1F .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rMSHzb1v1F .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rMSHzb1v1F .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rMSHzb1v1F .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rMSHzb1v1F .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rMSHzb1v1F .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rMSHzb1v1F .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rMSHzb1v1F .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rMSHzb1v1F .navbar {
    display: block;
    padding: 0;
  }
  .cid-rMSHzb1v1F .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rMSHzb1v1F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMSHzb1v1F .navbar-toggler {
    display: none;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMSHzb1v1F .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rMSHzb1v1F .menu-logo {
  margin-right: auto;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rMSHzb1v1F .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMSHzb1v1F button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F button.navbar-toggler:focus {
  outline: none;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .btn {
  display: -webkit-flex;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMSHzb1v1F .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rMSHzb1v1F .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMSHzb1v1F .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rMSHzb1v1F .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rMSHzb1v1F .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rMSHzb1v1F .nav-link:focus {
  outline: none;
}
.cid-rMSHzb1v1F .navbar-toggler {
  position: relative;
}
.cid-rMSHzb1v1F .dropdown-item.active,
.cid-rMSHzb1v1F .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-rMSHzb1v1F .nav-link:hover,
.cid-rMSHzb1v1F .dropdown-item:hover {
  color: #74253d;
}
.cid-rMSHzb1v1F .widget-title,
.cid-rMSHzb1v1F .widget-icon {
  color: #ffffff;
}
.cid-rMSHzb1v1F .widget-text {
  color: #f9f9f9;
}
.cid-tsWRurCO5N {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-tsWRurCO5N p {
  text-align: center;
}
.cid-tsWRurCO5N .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsWRurCO5N .btn-underline:hover {
  color: #505050;
}
.cid-tsWRurCO5N .btn-underline:before {
  background-color: #505050;
}
.cid-tsWRurCO5N .social-list a:focus {
  text-decoration: none;
}
.cid-tsWRurCO5N .text-copyright {
  width: 100%;
}
.cid-tsWRurCO5N .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-tsWRurCO5N .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsWRurCO5N .logo-footer {
  line-height: normal;
}
.cid-tsWRurCO5N .copyright {
  display: flex;
  align-items: center;
}
.cid-tsWRurCO5N .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsWRurCO5N .mbr-section-btn {
  font-size: 16px;
}
.cid-tsWRurCO5N .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rVqiABvPJq.popup-builder {
  background-color: #ffffff;
}
.cid-rVqiABvPJq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqiABvPJq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqiABvPJq .modal-content,
.cid-rVqiABvPJq .modal-dialog {
  height: auto;
}
.cid-rVqiABvPJq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqiABvPJq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqiABvPJq .form-wrapper .mbr-form .form-group,
  .cid-rVqiABvPJq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqiABvPJq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqiABvPJq .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqiABvPJq .mbr-text {
  text-align: center;
}
.cid-rVqiABvPJq .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqiABvPJq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqiABvPJq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqiABvPJq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqiABvPJq .modal-open {
  overflow: hidden;
}
.cid-rVqiABvPJq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqiABvPJq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqiABvPJq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqiABvPJq .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqiABvPJq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqiABvPJq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqiABvPJq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqiABvPJq .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqiABvPJq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqiABvPJq .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqiABvPJq .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqiABvPJq .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqiABvPJq .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqiABvPJq .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqiABvPJq .modal-header .close:focus {
  outline: none;
}
.cid-rVqiABvPJq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqiABvPJq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqiABvPJq .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqiABvPJq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqiABvPJq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqiABvPJq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqiABvPJq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqiABvPJq .modal-sm {
    max-width: 300px;
  }
  .cid-rVqiABvPJq .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqiABvPJq .modal-lg,
  .cid-rVqiABvPJq .modal-xl {
    max-width: 800px;
  }
  .cid-rVqiABvPJq .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqiABvPJq .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqiABvPJq .container {
    max-width: 1140px;
  }
}
.cid-rVqiABvPJq .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqiABvPJq .container {
    max-width: 720px;
  }
}
.cid-rVqiABvPJq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqiABvPJq .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqiABvPJq .form-group {
  margin-bottom: 1rem;
}
.cid-rVqiABvPJq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqiABvPJq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqiABvPJq .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvzeXP.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvzeXP.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvzeXP.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvzeXP .modal-content,
.cid-tsQahvzeXP .modal-dialog {
  height: auto;
}
.cid-tsQahvzeXP .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvzeXP .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvzeXP .form-wrapper .mbr-form .form-group,
  .cid-tsQahvzeXP .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvzeXP .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvzeXP .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvzeXP .mbr-text {
  text-align: center;
}
.cid-tsQahvzeXP .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvzeXP .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvzeXP .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvzeXP .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvzeXP .modal-open {
  overflow: hidden;
}
.cid-tsQahvzeXP .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvzeXP .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvzeXP .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvzeXP .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvzeXP .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvzeXP .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvzeXP .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvzeXP .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvzeXP .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvzeXP .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvzeXP .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvzeXP .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvzeXP .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvzeXP .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvzeXP .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvzeXP .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvzeXP .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvzeXP .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvzeXP .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvzeXP .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvzeXP .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvzeXP .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvzeXP .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvzeXP .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvzeXP .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvzeXP .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvzeXP .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvzeXP .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvzeXP .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvzeXP .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvzeXP .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvzeXP .modal-lg,
  .cid-tsQahvzeXP .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvzeXP .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvzeXP .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvzeXP .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvzeXP .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvzeXP .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvzeXP .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvzeXP .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvzeXP .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvzeXP .mbr-section-btn .btn {
  margin: 0;
}
.cid-qRpgATzuVT {
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-qRpgATzuVT .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-qRpgATzuVT .mbr-overlay {
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-qRpgATzuVT H1 {
  color: #f9f9f9;
}
.cid-teP02bWRJD {
  padding-top: 45px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #000000;
}
.cid-teP02bWRJD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-teP02bWRJD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-teP02bWRJD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-teP02bWRJD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-teP02bWRJD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f23801;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #f23801, #f7e4d6);
}
.cid-teP02bWRJD .icon-focus,
.cid-teP02bWRJD .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-teP02bWRJD .icon-focus:before,
.cid-teP02bWRJD .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-teP02bWRJD .icon-video {
  font-size: 1.5rem !important;
}
.cid-teP02bWRJD .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-teP02bWRJD ul {
  font-size: 0;
}
.cid-teP02bWRJD .mbr-gallery-filter ul {
  text-align: left;
}
.cid-teP02bWRJD .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-teP02bWRJD .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #f23801 !important;
}
.cid-teP02bWRJD .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-teP02bWRJD .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-teP02bWRJD .mbr-gallery-filter ul li.active .btn:after {
  border-color: #f23801;
}
.cid-teP02bWRJD .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-teP02bWRJD .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-teP02bWRJD .mbr-gallery-filter ul li:first-child,
.cid-teP02bWRJD .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-teP02bWRJD .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-teP02bWRJD .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-teP02bWRJD .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-teP02bWRJD .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-teP02bWRJD .mbr-section-title b:last-child,
.cid-teP02bWRJD .mbr-section-title strong:last-child {
  color: #f9f9f9;
}
.cid-teP02bWRJD .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-teP02bWRJD .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-teP02bWRJD .mbr-section-title,
.cid-teP02bWRJD .mbr-gallery-filter ul {
  text-align: center;
  color: #ffffff;
}
.cid-qRpiJlLQx2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-qRpiJlLQx2 .block-title {
  color: #f9f9f9;
}
.cid-rVqcyTzala {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rVqcyTzala .mbr-section-subtitle {
  color: #767676;
}
.cid-rVqcyTzala ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqcyTzala ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rVqcyTzala ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rVqcyTzala ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rVqcyTzala .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rVqcyTzala .mbr-section-title {
  color: #feffe3;
}
.cid-tsWQTu4ffp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-tsWQTu4ffp p {
  text-align: center;
}
.cid-tsWQTu4ffp .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsWQTu4ffp .btn-underline:hover {
  color: #505050;
}
.cid-tsWQTu4ffp .btn-underline:before {
  background-color: #505050;
}
.cid-tsWQTu4ffp .social-list a:focus {
  text-decoration: none;
}
.cid-tsWQTu4ffp .text-copyright {
  width: 100%;
}
.cid-tsWQTu4ffp .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-tsWQTu4ffp .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsWQTu4ffp .logo-footer {
  line-height: normal;
}
.cid-tsWQTu4ffp .copyright {
  display: flex;
  align-items: center;
}
.cid-tsWQTu4ffp .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsWQTu4ffp .mbr-section-btn {
  font-size: 16px;
}
.cid-tsWQTu4ffp .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rMSHzb1v1F .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-rMSHzb1v1F .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rMSHzb1v1F a {
  font-style: normal;
}
.cid-rMSHzb1v1F .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rMSHzb1v1F .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rMSHzb1v1F .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .content-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rMSHzb1v1F .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rMSHzb1v1F .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rMSHzb1v1F .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .nav-dropdown .link {
  font-weight: 400;
}
.cid-rMSHzb1v1F .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rMSHzb1v1F .content-right-side {
  text-align: center;
}
.cid-rMSHzb1v1F .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rMSHzb1v1F .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rMSHzb1v1F img {
    height: 3.8rem !important;
  }
  .cid-rMSHzb1v1F .btn {
    display: -webkit-flex;
  }
  .cid-rMSHzb1v1F button.navbar-toggler {
    display: block;
  }
  .cid-rMSHzb1v1F .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rMSHzb1v1F .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing,
  .cid-rMSHzb1v1F .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rMSHzb1v1F .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rMSHzb1v1F .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rMSHzb1v1F .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rMSHzb1v1F .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rMSHzb1v1F .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rMSHzb1v1F .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rMSHzb1v1F .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rMSHzb1v1F .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rMSHzb1v1F .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rMSHzb1v1F .navbar {
    display: block;
    padding: 0;
  }
  .cid-rMSHzb1v1F .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rMSHzb1v1F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMSHzb1v1F .navbar-toggler {
    display: none;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMSHzb1v1F .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rMSHzb1v1F .menu-logo {
  margin-right: auto;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rMSHzb1v1F .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMSHzb1v1F button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F button.navbar-toggler:focus {
  outline: none;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .btn {
  display: -webkit-flex;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMSHzb1v1F .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rMSHzb1v1F .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMSHzb1v1F .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rMSHzb1v1F .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rMSHzb1v1F .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rMSHzb1v1F .nav-link:focus {
  outline: none;
}
.cid-rMSHzb1v1F .navbar-toggler {
  position: relative;
}
.cid-rMSHzb1v1F .dropdown-item.active,
.cid-rMSHzb1v1F .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-rMSHzb1v1F .nav-link:hover,
.cid-rMSHzb1v1F .dropdown-item:hover {
  color: #74253d;
}
.cid-rMSHzb1v1F .widget-title,
.cid-rMSHzb1v1F .widget-icon {
  color: #ffffff;
}
.cid-rMSHzb1v1F .widget-text {
  color: #f9f9f9;
}
.cid-rVqiABwUGa.popup-builder {
  background-color: #ffffff;
}
.cid-rVqiABwUGa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqiABwUGa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqiABwUGa .modal-content,
.cid-rVqiABwUGa .modal-dialog {
  height: auto;
}
.cid-rVqiABwUGa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqiABwUGa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqiABwUGa .form-wrapper .mbr-form .form-group,
  .cid-rVqiABwUGa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqiABwUGa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqiABwUGa .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqiABwUGa .mbr-text {
  text-align: center;
}
.cid-rVqiABwUGa .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqiABwUGa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqiABwUGa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqiABwUGa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqiABwUGa .modal-open {
  overflow: hidden;
}
.cid-rVqiABwUGa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqiABwUGa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqiABwUGa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqiABwUGa .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqiABwUGa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqiABwUGa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqiABwUGa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqiABwUGa .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqiABwUGa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqiABwUGa .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqiABwUGa .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqiABwUGa .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqiABwUGa .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqiABwUGa .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqiABwUGa .modal-header .close:focus {
  outline: none;
}
.cid-rVqiABwUGa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqiABwUGa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqiABwUGa .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqiABwUGa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqiABwUGa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqiABwUGa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqiABwUGa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqiABwUGa .modal-sm {
    max-width: 300px;
  }
  .cid-rVqiABwUGa .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqiABwUGa .modal-lg,
  .cid-rVqiABwUGa .modal-xl {
    max-width: 800px;
  }
  .cid-rVqiABwUGa .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqiABwUGa .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqiABwUGa .container {
    max-width: 1140px;
  }
}
.cid-rVqiABwUGa .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqiABwUGa .container {
    max-width: 720px;
  }
}
.cid-rVqiABwUGa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqiABwUGa .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqiABwUGa .form-group {
  margin-bottom: 1rem;
}
.cid-rVqiABwUGa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqiABwUGa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqiABwUGa .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvAPqH.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvAPqH.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvAPqH.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvAPqH .modal-content,
.cid-tsQahvAPqH .modal-dialog {
  height: auto;
}
.cid-tsQahvAPqH .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvAPqH .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvAPqH .form-wrapper .mbr-form .form-group,
  .cid-tsQahvAPqH .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvAPqH .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvAPqH .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvAPqH .mbr-text {
  text-align: center;
}
.cid-tsQahvAPqH .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvAPqH .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvAPqH .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvAPqH .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvAPqH .modal-open {
  overflow: hidden;
}
.cid-tsQahvAPqH .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvAPqH .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvAPqH .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvAPqH .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvAPqH .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvAPqH .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvAPqH .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvAPqH .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvAPqH .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvAPqH .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvAPqH .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvAPqH .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvAPqH .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvAPqH .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvAPqH .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvAPqH .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvAPqH .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvAPqH .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvAPqH .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvAPqH .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvAPqH .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvAPqH .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvAPqH .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvAPqH .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvAPqH .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvAPqH .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvAPqH .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvAPqH .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvAPqH .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvAPqH .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvAPqH .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvAPqH .modal-lg,
  .cid-tsQahvAPqH .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvAPqH .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvAPqH .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvAPqH .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvAPqH .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvAPqH .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvAPqH .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvAPqH .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvAPqH .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvAPqH .mbr-section-btn .btn {
  margin: 0;
}
.cid-qSc1GwgAVT {
  padding-top: 160px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-qSc1GwgAVT .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-qSc1GwgAVT .mbr-overlay {
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-qSc1GwgAVT H1 {
  color: #f9f9f9;
}
.cid-qScaBS626K {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/qvc77-ri-2000x1333.jpg");
}
.cid-qScaBS626K h2,
.cid-qScaBS626K h3,
.cid-qScaBS626K h4,
.cid-qScaBS626K p {
  color: #ffffff;
}
.cid-qScaBS626K .mbr-overlay {
  z-index: -1;
}
.cid-qScaBS626K .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-qScaBS626K .input {
  margin-bottom: 15px;
}
.cid-qScaBS626K .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-qScaBS626K .media-container-row {
  align-items: center;
}
.cid-qScaBS626K .mbr-text {
  color: #767676;
}
.cid-qScaBS626K .form-block {
  background-color: rgba(10, 10, 10, 0.5);
  padding: 3rem;
}
.cid-qScaBS626K a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qScaBS626K .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qScaBS626K .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qScaBS626K .block .form-control {
  padding: 1.07em 1.07em;
}
@media (min-width: 768px) {
  .cid-qScaBS626K .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qScaBS626K .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-qScaBS626K .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qScaBS626K h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-qScaBS626K .block-content {
    padding: 0;
  }
  .cid-qScaBS626K .form-block {
    padding: 1rem;
  }
}
.cid-r53IqtKbyA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-r53IqtKbyA .block-title B {
  color: #feffe3;
}
.cid-rMSHzb1v1F .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-rMSHzb1v1F .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rMSHzb1v1F a {
  font-style: normal;
}
.cid-rMSHzb1v1F .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rMSHzb1v1F .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rMSHzb1v1F .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .content-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rMSHzb1v1F .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rMSHzb1v1F .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rMSHzb1v1F .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .nav-dropdown .link {
  font-weight: 400;
}
.cid-rMSHzb1v1F .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rMSHzb1v1F .content-right-side {
  text-align: center;
}
.cid-rMSHzb1v1F .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rMSHzb1v1F .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rMSHzb1v1F img {
    height: 3.8rem !important;
  }
  .cid-rMSHzb1v1F .btn {
    display: -webkit-flex;
  }
  .cid-rMSHzb1v1F button.navbar-toggler {
    display: block;
  }
  .cid-rMSHzb1v1F .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rMSHzb1v1F .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing,
  .cid-rMSHzb1v1F .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rMSHzb1v1F .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rMSHzb1v1F .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rMSHzb1v1F .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rMSHzb1v1F .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rMSHzb1v1F .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rMSHzb1v1F .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rMSHzb1v1F .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rMSHzb1v1F .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rMSHzb1v1F .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rMSHzb1v1F .navbar {
    display: block;
    padding: 0;
  }
  .cid-rMSHzb1v1F .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rMSHzb1v1F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMSHzb1v1F .navbar-toggler {
    display: none;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMSHzb1v1F .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rMSHzb1v1F .menu-logo {
  margin-right: auto;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rMSHzb1v1F .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMSHzb1v1F button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F button.navbar-toggler:focus {
  outline: none;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .btn {
  display: -webkit-flex;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMSHzb1v1F .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rMSHzb1v1F .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMSHzb1v1F .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rMSHzb1v1F .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rMSHzb1v1F .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rMSHzb1v1F .nav-link:focus {
  outline: none;
}
.cid-rMSHzb1v1F .navbar-toggler {
  position: relative;
}
.cid-rMSHzb1v1F .dropdown-item.active,
.cid-rMSHzb1v1F .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-rMSHzb1v1F .nav-link:hover,
.cid-rMSHzb1v1F .dropdown-item:hover {
  color: #74253d;
}
.cid-rMSHzb1v1F .widget-title,
.cid-rMSHzb1v1F .widget-icon {
  color: #ffffff;
}
.cid-rMSHzb1v1F .widget-text {
  color: #f9f9f9;
}
.cid-tsWRS9oXib {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-tsWRS9oXib p {
  text-align: center;
}
.cid-tsWRS9oXib .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsWRS9oXib .btn-underline:hover {
  color: #505050;
}
.cid-tsWRS9oXib .btn-underline:before {
  background-color: #505050;
}
.cid-tsWRS9oXib .social-list a:focus {
  text-decoration: none;
}
.cid-tsWRS9oXib .text-copyright {
  width: 100%;
}
.cid-tsWRS9oXib .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-tsWRS9oXib .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsWRS9oXib .logo-footer {
  line-height: normal;
}
.cid-tsWRS9oXib .copyright {
  display: flex;
  align-items: center;
}
.cid-tsWRS9oXib .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsWRS9oXib .mbr-section-btn {
  font-size: 16px;
}
.cid-tsWRS9oXib .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rVqiABwu6B.popup-builder {
  background-color: #ffffff;
}
.cid-rVqiABwu6B.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqiABwu6B.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqiABwu6B .modal-content,
.cid-rVqiABwu6B .modal-dialog {
  height: auto;
}
.cid-rVqiABwu6B .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqiABwu6B .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqiABwu6B .form-wrapper .mbr-form .form-group,
  .cid-rVqiABwu6B .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqiABwu6B .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqiABwu6B .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqiABwu6B .mbr-text {
  text-align: center;
}
.cid-rVqiABwu6B .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqiABwu6B .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqiABwu6B .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqiABwu6B .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqiABwu6B .modal-open {
  overflow: hidden;
}
.cid-rVqiABwu6B .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqiABwu6B .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqiABwu6B .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqiABwu6B .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqiABwu6B .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqiABwu6B .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqiABwu6B .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqiABwu6B .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqiABwu6B .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqiABwu6B .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqiABwu6B .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqiABwu6B .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqiABwu6B .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqiABwu6B .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqiABwu6B .modal-header .close:focus {
  outline: none;
}
.cid-rVqiABwu6B .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqiABwu6B .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqiABwu6B .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqiABwu6B .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqiABwu6B .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqiABwu6B .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqiABwu6B .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqiABwu6B .modal-sm {
    max-width: 300px;
  }
  .cid-rVqiABwu6B .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqiABwu6B .modal-lg,
  .cid-rVqiABwu6B .modal-xl {
    max-width: 800px;
  }
  .cid-rVqiABwu6B .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqiABwu6B .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqiABwu6B .container {
    max-width: 1140px;
  }
}
.cid-rVqiABwu6B .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqiABwu6B .container {
    max-width: 720px;
  }
}
.cid-rVqiABwu6B .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqiABwu6B .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqiABwu6B .form-group {
  margin-bottom: 1rem;
}
.cid-rVqiABwu6B .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqiABwu6B .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqiABwu6B .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvAGGd.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvAGGd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvAGGd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvAGGd .modal-content,
.cid-tsQahvAGGd .modal-dialog {
  height: auto;
}
.cid-tsQahvAGGd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvAGGd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvAGGd .form-wrapper .mbr-form .form-group,
  .cid-tsQahvAGGd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvAGGd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvAGGd .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvAGGd .mbr-text {
  text-align: center;
}
.cid-tsQahvAGGd .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvAGGd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvAGGd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvAGGd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvAGGd .modal-open {
  overflow: hidden;
}
.cid-tsQahvAGGd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvAGGd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvAGGd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvAGGd .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvAGGd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvAGGd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvAGGd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvAGGd .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvAGGd .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvAGGd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvAGGd .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvAGGd .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvAGGd .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvAGGd .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvAGGd .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvAGGd .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvAGGd .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvAGGd .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvAGGd .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvAGGd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvAGGd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvAGGd .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvAGGd .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvAGGd .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvAGGd .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvAGGd .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvAGGd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvAGGd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvAGGd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvAGGd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvAGGd .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvAGGd .modal-lg,
  .cid-tsQahvAGGd .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvAGGd .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvAGGd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvAGGd .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvAGGd .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvAGGd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvAGGd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvAGGd .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvAGGd .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvAGGd .mbr-section-btn .btn {
  margin: 0;
}
.cid-resfBfNfvz {
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-resfBfNfvz .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-resfBfNfvz .mbr-overlay {
  background: linear-gradient(#feffe3 -10%, #feffe3 75%);
}
.cid-resfBfNfvz H1 {
  color: #74253d;
}
.cid-resfBjVTm7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfBjVTm7 .block-title B {
  color: #feffe3;
}
.cid-resfBjVTm7 .block-title {
  color: #feffe3;
}
.cid-resfBm8qfX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-resfBonjHZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfBonjHZ .block-title {
  color: #feffe3;
}
.cid-resfBqHXcu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-resfBsPClV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfBsPClV .block-title B {
  color: #feffe3;
}
.cid-resfBsPClV .block-title {
  color: #feffe3;
}
.cid-resfBuY9pI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-resfBxcIoQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfBxcIoQ .block-title {
  color: #feffe3;
}
.cid-resfBzw2DX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-resfBBISnG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfBBISnG .block-title B {
  color: #feffe3;
}
.cid-resfBBISnG .block-title {
  color: #feffe3;
}
.cid-resfBDTgkl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-resfBFYFxb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfBFYFxb .block-title B {
  color: #ffffff;
}
.cid-resfBFYFxb .block-title {
  color: #ffffff;
}
.cid-resfBI6ipI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-resfBK9iI5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfBK9iI5 .block-title {
  color: #feffe3;
}
.cid-resfBMcXUO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-resfBOoa0x {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfBOoa0x .block-title {
  color: #feffe3;
}
.cid-resfBQwnAA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-resfBSGY5K {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfBSGY5K .block-title B {
  color: #feffe3;
}
.cid-resfBSGY5K .block-title {
  color: #feffe3;
}
.cid-resfBV03Jv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-resfBX7UH3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfBX7UH3 .block-title {
  color: #ffffff;
}
.cid-resfBZb5sP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-resfC1iKsv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfC1iKsv .block-title {
  color: #ffffff;
}
.cid-resfC3oFRd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-resfC5sqZH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-resfC5sqZH .block-title {
  color: #ffffff;
}
.cid-resfC7LcsP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-resfC7LcsP .block-title {
  color: #000000;
}
.cid-resfC9NXqm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #74253d;
}
.cid-resfC9NXqm .block-title {
  color: #feffe3;
}
.cid-resfCc2F7R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-resfCeIVvZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #74253d;
}
.cid-resfCeIVvZ .block-title B {
  color: #feffe3;
}
.cid-resfCeIVvZ .block-title {
  color: #feffe3;
}
.cid-resfCgU0bu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t4pEtrfyuv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-t4pEtrfyuv p {
  text-align: center;
}
.cid-t4pEtrfyuv .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t4pEtrfyuv .btn-underline:hover {
  color: #505050;
}
.cid-t4pEtrfyuv .btn-underline:before {
  background-color: #505050;
}
.cid-t4pEtrfyuv .social-list a:focus {
  text-decoration: none;
}
.cid-t4pEtrfyuv .text-copyright {
  width: 100%;
}
.cid-t4pEtrfyuv .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-t4pEtrfyuv .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-t4pEtrfyuv .logo-footer {
  line-height: normal;
}
.cid-t4pEtrfyuv .copyright {
  display: flex;
  align-items: center;
}
.cid-t4pEtrfyuv .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4pEtrfyuv .mbr-section-btn {
  font-size: 16px;
}
.cid-t4pEtrfyuv .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rMSHzb1v1F .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-rMSHzb1v1F .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rMSHzb1v1F a {
  font-style: normal;
}
.cid-rMSHzb1v1F .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rMSHzb1v1F .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rMSHzb1v1F .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .content-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rMSHzb1v1F .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rMSHzb1v1F .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rMSHzb1v1F .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .nav-dropdown .link {
  font-weight: 400;
}
.cid-rMSHzb1v1F .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rMSHzb1v1F .content-right-side {
  text-align: center;
}
.cid-rMSHzb1v1F .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rMSHzb1v1F .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rMSHzb1v1F img {
    height: 3.8rem !important;
  }
  .cid-rMSHzb1v1F .btn {
    display: -webkit-flex;
  }
  .cid-rMSHzb1v1F button.navbar-toggler {
    display: block;
  }
  .cid-rMSHzb1v1F .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rMSHzb1v1F .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing,
  .cid-rMSHzb1v1F .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rMSHzb1v1F .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rMSHzb1v1F .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rMSHzb1v1F .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rMSHzb1v1F .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rMSHzb1v1F .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rMSHzb1v1F .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rMSHzb1v1F .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rMSHzb1v1F .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rMSHzb1v1F .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rMSHzb1v1F .navbar {
    display: block;
    padding: 0;
  }
  .cid-rMSHzb1v1F .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rMSHzb1v1F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMSHzb1v1F .navbar-toggler {
    display: none;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMSHzb1v1F .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rMSHzb1v1F .menu-logo {
  margin-right: auto;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rMSHzb1v1F .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMSHzb1v1F button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F button.navbar-toggler:focus {
  outline: none;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .btn {
  display: -webkit-flex;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMSHzb1v1F .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rMSHzb1v1F .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMSHzb1v1F .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rMSHzb1v1F .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rMSHzb1v1F .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rMSHzb1v1F .nav-link:focus {
  outline: none;
}
.cid-rMSHzb1v1F .navbar-toggler {
  position: relative;
}
.cid-rMSHzb1v1F .dropdown-item.active,
.cid-rMSHzb1v1F .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-rMSHzb1v1F .nav-link:hover,
.cid-rMSHzb1v1F .dropdown-item:hover {
  color: #74253d;
}
.cid-rVqiABxPTa.popup-builder {
  background-color: #ffffff;
}
.cid-rVqiABxPTa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqiABxPTa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqiABxPTa .modal-content,
.cid-rVqiABxPTa .modal-dialog {
  height: auto;
}
.cid-rVqiABxPTa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqiABxPTa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqiABxPTa .form-wrapper .mbr-form .form-group,
  .cid-rVqiABxPTa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqiABxPTa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqiABxPTa .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqiABxPTa .mbr-text {
  text-align: center;
}
.cid-rVqiABxPTa .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqiABxPTa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqiABxPTa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqiABxPTa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqiABxPTa .modal-open {
  overflow: hidden;
}
.cid-rVqiABxPTa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqiABxPTa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqiABxPTa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqiABxPTa .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqiABxPTa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqiABxPTa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqiABxPTa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqiABxPTa .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqiABxPTa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqiABxPTa .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqiABxPTa .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqiABxPTa .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqiABxPTa .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqiABxPTa .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqiABxPTa .modal-header .close:focus {
  outline: none;
}
.cid-rVqiABxPTa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqiABxPTa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqiABxPTa .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqiABxPTa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqiABxPTa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqiABxPTa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqiABxPTa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqiABxPTa .modal-sm {
    max-width: 300px;
  }
  .cid-rVqiABxPTa .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqiABxPTa .modal-lg,
  .cid-rVqiABxPTa .modal-xl {
    max-width: 800px;
  }
  .cid-rVqiABxPTa .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqiABxPTa .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqiABxPTa .container {
    max-width: 1140px;
  }
}
.cid-rVqiABxPTa .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqiABxPTa .container {
    max-width: 720px;
  }
}
.cid-rVqiABxPTa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqiABxPTa .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqiABxPTa .form-group {
  margin-bottom: 1rem;
}
.cid-rVqiABxPTa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqiABxPTa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqiABxPTa .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvA1cN.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvA1cN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvA1cN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvA1cN .modal-content,
.cid-tsQahvA1cN .modal-dialog {
  height: auto;
}
.cid-tsQahvA1cN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvA1cN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvA1cN .form-wrapper .mbr-form .form-group,
  .cid-tsQahvA1cN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvA1cN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvA1cN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvA1cN .mbr-text {
  text-align: center;
}
.cid-tsQahvA1cN .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvA1cN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvA1cN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvA1cN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvA1cN .modal-open {
  overflow: hidden;
}
.cid-tsQahvA1cN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvA1cN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvA1cN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvA1cN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvA1cN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvA1cN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvA1cN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvA1cN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvA1cN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvA1cN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvA1cN .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvA1cN .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvA1cN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvA1cN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvA1cN .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvA1cN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvA1cN .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvA1cN .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvA1cN .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvA1cN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvA1cN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvA1cN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvA1cN .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvA1cN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvA1cN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvA1cN .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvA1cN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvA1cN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvA1cN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvA1cN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvA1cN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvA1cN .modal-lg,
  .cid-tsQahvA1cN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvA1cN .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvA1cN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvA1cN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvA1cN .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvA1cN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvA1cN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvA1cN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvA1cN .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvA1cN .mbr-section-btn .btn {
  margin: 0;
}
.cid-rMMpE3rTVJ {
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-rMMpE3rTVJ .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-rMMpE3rTVJ .mbr-overlay {
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-rMMpE3rTVJ H1 {
  color: #f9f9f9;
}
.cid-rMMpE5xFgJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpE9vlOE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpE9vlOE .block-title {
  color: #feffe3;
}
.cid-rMMpEd7qiK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpEh3c5o {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpEh3c5o .block-title {
  color: #ffffff;
}
.cid-rMMpEkTIW9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpEodb39 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpEodb39 .block-title {
  color: #feffe3;
}
.cid-rMMpErAKm0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpEv07MD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpEv07MD .block-title {
  color: #feffe3;
}
.cid-rMMpEyxk6h {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpEC3SRK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpEC3SRK .block-title {
  color: #feffe3;
}
.cid-rMMpEFvilP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpEITduK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpEITduK .block-title {
  color: #feffe3;
}
.cid-rMMpEMh2Hf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpEPQjh2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpEPQjh2 .block-title {
  color: #f9f9f9;
}
.cid-rMMpETf1ey {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpEWzWqj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpEWzWqj .block-title {
  color: #feffe3;
}
.cid-rMMpEZXoB1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpF3h7wX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpF3h7wX .block-title {
  color: #feffe3;
}
.cid-rMMpF779lu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpFavSQv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpFavSQv .block-title {
  color: #feffe3;
}
.cid-rMMpFdSdTs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpFhfi1s {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpFhfi1s .block-title {
  color: #ffffff;
}
.cid-rMMpFkNHag {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpFowgeu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpFowgeu .block-title {
  color: #feffe3;
}
.cid-rMMpFs1Kfw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpFvjAxQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpFvjAxQ .block-title {
  color: #feffe3;
}
.cid-rMMpFyQMc7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpFCUnEC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpFCUnEC .block-title {
  color: #feffe3;
}
.cid-rMMpFGtmao {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpFJIwDg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpFJIwDg .block-title B {
  color: #feffe3;
}
.cid-rMMpFJIwDg .block-title {
  color: #feffe3;
}
.cid-rMMpFMY0z2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpFQlNvP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpFQlNvP .block-title {
  color: #f9f9f9;
}
.cid-rMMpFTZYid {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpFXlsBb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpFXlsBb .block-title {
  color: #feffe3;
}
.cid-rMMpG0EKAl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpG3Wq6C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpG3Wq6C .block-title B {
  color: #feffe3;
}
.cid-rMMpG3Wq6C .block-title {
  color: #feffe3;
}
.cid-rMMpG7wRSi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpGbmyQO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpGbmyQO .block-title {
  color: #feffe3;
}
.cid-rMMpGeKw6f {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpGi4qwu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpGi4qwu .block-title {
  color: #feffe3;
}
.cid-rMMpGlpjUI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpGoPnB4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpGoPnB4 .block-title {
  color: #feffe3;
}
.cid-rMMpGsohp3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpGvIhPj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpGvIhPj .block-title {
  color: #feffe3;
}
.cid-rMMpGzewxw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMMpGCDChS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rMMpGCDChS .block-title B {
  color: #feffe3;
}
.cid-rMMpGCDChS .block-title {
  color: #feffe3;
}
.cid-rMMpGG9pWp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rMSHzb1v1F .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-rMSHzb1v1F .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rMSHzb1v1F a {
  font-style: normal;
}
.cid-rMSHzb1v1F .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rMSHzb1v1F .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rMSHzb1v1F .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .content-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rMSHzb1v1F .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rMSHzb1v1F .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rMSHzb1v1F .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .nav-dropdown .link {
  font-weight: 400;
}
.cid-rMSHzb1v1F .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rMSHzb1v1F .content-right-side {
  text-align: center;
}
.cid-rMSHzb1v1F .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rMSHzb1v1F .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rMSHzb1v1F img {
    height: 3.8rem !important;
  }
  .cid-rMSHzb1v1F .btn {
    display: -webkit-flex;
  }
  .cid-rMSHzb1v1F button.navbar-toggler {
    display: block;
  }
  .cid-rMSHzb1v1F .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rMSHzb1v1F .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing,
  .cid-rMSHzb1v1F .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rMSHzb1v1F .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rMSHzb1v1F .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rMSHzb1v1F .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rMSHzb1v1F .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rMSHzb1v1F .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rMSHzb1v1F .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rMSHzb1v1F .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rMSHzb1v1F .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rMSHzb1v1F .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rMSHzb1v1F .navbar {
    display: block;
    padding: 0;
  }
  .cid-rMSHzb1v1F .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rMSHzb1v1F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMSHzb1v1F .navbar-toggler {
    display: none;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMSHzb1v1F .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rMSHzb1v1F .menu-logo {
  margin-right: auto;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rMSHzb1v1F .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMSHzb1v1F button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F button.navbar-toggler:focus {
  outline: none;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .btn {
  display: -webkit-flex;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMSHzb1v1F .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rMSHzb1v1F .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMSHzb1v1F .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rMSHzb1v1F .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rMSHzb1v1F .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rMSHzb1v1F .nav-link:focus {
  outline: none;
}
.cid-rMSHzb1v1F .navbar-toggler {
  position: relative;
}
.cid-rMSHzb1v1F .dropdown-item.active,
.cid-rMSHzb1v1F .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-rMSHzb1v1F .nav-link:hover,
.cid-rMSHzb1v1F .dropdown-item:hover {
  color: #74253d;
}
.cid-rMSHzb1v1F .widget-title,
.cid-rMSHzb1v1F .widget-icon {
  color: #ffffff;
}
.cid-rMSHzb1v1F .widget-text {
  color: #f9f9f9;
}
.cid-t4pEzQ10Un {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-t4pEzQ10Un p {
  text-align: center;
}
.cid-t4pEzQ10Un .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t4pEzQ10Un .btn-underline:hover {
  color: #505050;
}
.cid-t4pEzQ10Un .btn-underline:before {
  background-color: #505050;
}
.cid-t4pEzQ10Un .social-list a:focus {
  text-decoration: none;
}
.cid-t4pEzQ10Un .text-copyright {
  width: 100%;
}
.cid-t4pEzQ10Un .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-t4pEzQ10Un .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-t4pEzQ10Un .logo-footer {
  line-height: normal;
}
.cid-t4pEzQ10Un .copyright {
  display: flex;
  align-items: center;
}
.cid-t4pEzQ10Un .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4pEzQ10Un .mbr-section-btn {
  font-size: 16px;
}
.cid-t4pEzQ10Un .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rVqiAByNV4.popup-builder {
  background-color: #ffffff;
}
.cid-rVqiAByNV4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqiAByNV4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqiAByNV4 .modal-content,
.cid-rVqiAByNV4 .modal-dialog {
  height: auto;
}
.cid-rVqiAByNV4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqiAByNV4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqiAByNV4 .form-wrapper .mbr-form .form-group,
  .cid-rVqiAByNV4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqiAByNV4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqiAByNV4 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqiAByNV4 .mbr-text {
  text-align: center;
}
.cid-rVqiAByNV4 .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqiAByNV4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqiAByNV4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqiAByNV4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqiAByNV4 .modal-open {
  overflow: hidden;
}
.cid-rVqiAByNV4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqiAByNV4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqiAByNV4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqiAByNV4 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqiAByNV4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqiAByNV4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqiAByNV4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqiAByNV4 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqiAByNV4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqiAByNV4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqiAByNV4 .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqiAByNV4 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqiAByNV4 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqiAByNV4 .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqiAByNV4 .modal-header .close:focus {
  outline: none;
}
.cid-rVqiAByNV4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqiAByNV4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqiAByNV4 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqiAByNV4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqiAByNV4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqiAByNV4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqiAByNV4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqiAByNV4 .modal-sm {
    max-width: 300px;
  }
  .cid-rVqiAByNV4 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqiAByNV4 .modal-lg,
  .cid-rVqiAByNV4 .modal-xl {
    max-width: 800px;
  }
  .cid-rVqiAByNV4 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqiAByNV4 .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqiAByNV4 .container {
    max-width: 1140px;
  }
}
.cid-rVqiAByNV4 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqiAByNV4 .container {
    max-width: 720px;
  }
}
.cid-rVqiAByNV4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqiAByNV4 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqiAByNV4 .form-group {
  margin-bottom: 1rem;
}
.cid-rVqiAByNV4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqiAByNV4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqiAByNV4 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvBcQd.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvBcQd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvBcQd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvBcQd .modal-content,
.cid-tsQahvBcQd .modal-dialog {
  height: auto;
}
.cid-tsQahvBcQd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvBcQd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvBcQd .form-wrapper .mbr-form .form-group,
  .cid-tsQahvBcQd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvBcQd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvBcQd .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvBcQd .mbr-text {
  text-align: center;
}
.cid-tsQahvBcQd .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvBcQd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvBcQd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvBcQd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvBcQd .modal-open {
  overflow: hidden;
}
.cid-tsQahvBcQd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvBcQd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvBcQd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvBcQd .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvBcQd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvBcQd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvBcQd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvBcQd .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvBcQd .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvBcQd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvBcQd .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvBcQd .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvBcQd .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvBcQd .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvBcQd .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvBcQd .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvBcQd .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvBcQd .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvBcQd .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvBcQd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvBcQd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvBcQd .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvBcQd .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvBcQd .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvBcQd .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvBcQd .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvBcQd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvBcQd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvBcQd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvBcQd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvBcQd .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvBcQd .modal-lg,
  .cid-tsQahvBcQd .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvBcQd .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvBcQd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvBcQd .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvBcQd .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvBcQd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvBcQd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvBcQd .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvBcQd .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvBcQd .mbr-section-btn .btn {
  margin: 0;
}
.cid-rVmyWGqMBS {
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-rVmyWGqMBS .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-rVmyWGqMBS .mbr-overlay {
  background: linear-gradient(#feffe3 -10%, #feffe3 75%);
}
.cid-rVmyWGqMBS H1 {
  color: #74253d;
}
.cid-rVmyWJk8LD {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #74253d;
}
.cid-rVmyWJk8LD .block-title B {
  color: #ffffff;
}
.cid-rVmyWJk8LD .block-title {
  color: #ffffff;
}
.cid-rVmyWKZiLo {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVmyWKZiLo .carousel-item {
  justify-content: center;
}
.cid-rVmyWKZiLo .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
}
.cid-rVmyWKZiLo .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 10px;
  border-radius: 50%;
  color: #585858;
  background: #c8c6c6;
  opacity: .5;
}
.cid-rVmyWKZiLo .carousel-controls a:hover span {
  opacity: 1;
}
.cid-rVmyWKZiLo .user_image {
  width: 300px;
  height: 300px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-rVmyWKZiLo .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-rVmyWKZiLo .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-rVmyWO82ZB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #74253d;
}
.cid-rVmyWO82ZB .section-text {
  padding: 2rem 0;
  letter-spacing: 0.03em;
}
.cid-rVmyWO82ZB .inner-container {
  margin: 0 auto;
  position: relative;
}
.cid-rVmyWO82ZB .inner-container .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #efefef;
  opacity: .1;
}
.cid-rVmyWO82ZB .inner-container .mbr-iconfont.left-top {
  left: -1rem;
  top: -1rem;
}
.cid-rVmyWO82ZB .inner-container .mbr-iconfont.right-down {
  right: -1rem;
  bottom: -1rem;
}
.cid-rVmyWO82ZB .inner-container .section-text {
  z-index: 3;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .cid-rVmyWO82ZB .inner-container {
    width: 100% !important;
  }
  .cid-rVmyWO82ZB .mbr-iconfont {
    font-size: 6rem !important;
  }
}
.cid-rVmyWQ2A1T {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVmyWQ2A1T h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-rVmyWQ2A1T .pt-4 {
  padding-top: 2rem!important;
}
.cid-rVmyWQ2A1T .card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.cid-rVmyWQ2A1T p {
  color: #767676;
  text-align: left;
}
.cid-rVmyWQ2A1T .card-wrapper {
  height: 100%;
}
.cid-rVmyWQ2A1T .container-fluid {
  max-width: 1600px;
}
.cid-rVmyWQ2A1T img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rVmyWQ2A1T h4 {
  margin: 0;
}
.cid-rVmyWQ2A1T .icons {
  position: absolute;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  left: 30px;
  bottom: 20px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rVmyWQ2A1T .mbr-iconfont {
  color: #f9f9f9;
  display: block;
  transition: all 0.3s;
  padding-bottom: 10px;
}
.cid-rVmyWQ2A1T .mbr-iconfont:hover {
  color: #cccccc;
}
.cid-rVmyWQ2A1T .card:hover h3 {
  background-size: 100% 100%;
}
.cid-rVmyWQ2A1T .card:hover .icons {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rVmyWQ2A1T .icons {
    opacity: 1;
  }
}
.cid-rVmyWQ2A1T .name,
.cid-rVmyWQ2A1T .title-align {
  text-align: center;
}
.cid-rVmyWQ2A1T .card-title {
  text-align: center;
}
.cid-rVmyWQ2A1T .maintitle {
  text-align: center;
}
.cid-rVmyWTMcZL {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/20180513-120844-2000x1500.jpg");
}
.cid-rVmyWTMcZL a {
  color: #232323;
}
.cid-rVmyWTMcZL a:hover {
  color: #74253d;
}
.cid-rVmyWTMcZL h5 {
  color: #4e6dcc;
}
.cid-rVmyWTMcZL .card-img {
  width: 300px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cid-rVmyWTMcZL .img-icon {
  width: auto;
  max-width: 500px;
  max-height: 500px;
  left: 0;
  position: absolute;
}
@media (min-width: 992px) {
  .cid-rVmyWTMcZL .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-rVmyWTMcZL H5 {
  color: #74253d;
}
.cid-rVmyWXwTP4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #74253d;
}
.cid-rVmyWXwTP4 .block-title {
  color: #ffffff;
}
.cid-rVmyWZwane {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-rVmyX1l1o4 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-rVmyX1l1o4 h4,
.cid-rVmyX1l1o4 h5 {
  text-align: center;
}
.cid-rVmyX1l1o4 h5 {
  font-weight: 400;
}
.cid-rVmyX1l1o4 p {
  text-align: center;
}
.cid-rVmyX1l1o4 .img-icon {
  height: 300px;
  width: 300px;
  border-radius: 50%;
}
.cid-rVmyX1l1o4 .card-box {
  text-align: center;
}
.cid-rVmyX1l1o4 .card-box:after {
  content: "";
  display: inline-block;
  width: 150px;
  height: 3px;
  background-color: #74253d;
}
@media (min-width: 992px) {
  .cid-rVmyX1l1o4 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-rVmyX47iyQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rVmyX47iyQ .block-title B {
  color: #ffffff;
}
.cid-rVmyX47iyQ .block-title {
  color: #ffffff;
}
.cid-rVmyX5ETBr {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVmyX5ETBr .carousel-item {
  justify-content: center;
}
.cid-rVmyX5ETBr .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
}
.cid-rVmyX5ETBr .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 10px;
  border-radius: 50%;
  color: #585858;
  background: #c8c6c6;
  opacity: .5;
}
.cid-rVmyX5ETBr .carousel-controls a:hover span {
  opacity: 1;
}
.cid-rVmyX5ETBr .user_image {
  width: 300px;
  height: 300px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-rVmyX5ETBr .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-rVmyX5ETBr .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-rVmyX8xwsC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #74253d;
}
.cid-rVmyX8xwsC .block-title B {
  color: #ffffff;
}
.cid-rVmyX8xwsC .block-title {
  color: #ffffff;
}
.cid-rVmyXalaNr {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVmyXalaNr .carousel-item {
  justify-content: center;
}
.cid-rVmyXalaNr .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
}
.cid-rVmyXalaNr .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 10px;
  border-radius: 50%;
  color: #585858;
  background: #c8c6c6;
  opacity: .5;
}
.cid-rVmyXalaNr .carousel-controls a:hover span {
  opacity: 1;
}
.cid-rVmyXalaNr .user_image {
  width: 300px;
  height: 300px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-rVmyXalaNr .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-rVmyXalaNr .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-rVmyXdu2OF {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVmyXdu2OF .mbr-section-subtitle {
  color: #767676;
}
.cid-rVmyXdu2OF .container-table {
  margin: 0 auto;
}
.cid-rVmyXdu2OF .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rVmyXdu2OF .dataTables_wrapper {
  display: block;
}
.cid-rVmyXdu2OF .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rVmyXdu2OF table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rVmyXdu2OF table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-rVmyXdu2OF table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-rVmyXdu2OF table td {
  border-top: 1px solid #cccccc;
}
.cid-rVmyXdu2OF table td:hover {
  color: #74253d;
}
.cid-rVmyXdu2OF table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-rVmyXdu2OF .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rVmyXdu2OF .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rVmyXdu2OF .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rVmyXdu2OF .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-rVmyXdu2OF .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-rVmyXdu2OF .dataTables_filter {
    text-align: center;
  }
  .cid-rVmyXdu2OF .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-rVmyXglG6U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-rVmyXglG6U p {
  text-align: center;
}
.cid-rVmyXglG6U .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-rVmyXglG6U .btn-underline:hover {
  color: #505050;
}
.cid-rVmyXglG6U .btn-underline:before {
  background-color: #505050;
}
.cid-rVmyXglG6U .social-list a:focus {
  text-decoration: none;
}
.cid-rVmyXglG6U .text-copyright {
  width: 100%;
}
.cid-rVmyXglG6U .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-rVmyXglG6U .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-rVmyXglG6U .logo-footer {
  line-height: normal;
}
.cid-rVmyXglG6U .copyright {
  display: flex;
  align-items: center;
}
.cid-rVmyXglG6U .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rVmyXglG6U .mbr-section-btn {
  font-size: 16px;
}
.cid-rVmyXglG6U .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rVmyXiggOB .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-rVmyXiggOB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rVmyXiggOB a {
  font-style: normal;
}
.cid-rVmyXiggOB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rVmyXiggOB .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rVmyXiggOB .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rVmyXiggOB .content-text {
  margin-bottom: 0;
}
.cid-rVmyXiggOB .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rVmyXiggOB .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rVmyXiggOB .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rVmyXiggOB .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rVmyXiggOB .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rVmyXiggOB .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rVmyXiggOB .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rVmyXiggOB .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rVmyXiggOB .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rVmyXiggOB .nav-dropdown .link {
  font-weight: 400;
}
.cid-rVmyXiggOB .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rVmyXiggOB .content-right-side {
  text-align: center;
}
.cid-rVmyXiggOB .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rVmyXiggOB .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rVmyXiggOB .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rVmyXiggOB .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rVmyXiggOB .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rVmyXiggOB .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rVmyXiggOB img {
    height: 3.8rem !important;
  }
  .cid-rVmyXiggOB .btn {
    display: -webkit-flex;
  }
  .cid-rVmyXiggOB button.navbar-toggler {
    display: block;
  }
  .cid-rVmyXiggOB .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rVmyXiggOB .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rVmyXiggOB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rVmyXiggOB .navbar-collapse.collapsing,
  .cid-rVmyXiggOB .navbar-collapse.show {
    display: block !important;
  }
  .cid-rVmyXiggOB .navbar-collapse.collapsing .navbar-nav,
  .cid-rVmyXiggOB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rVmyXiggOB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rVmyXiggOB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rVmyXiggOB .navbar-collapse.collapsing .navbar-buttons,
  .cid-rVmyXiggOB .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rVmyXiggOB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rVmyXiggOB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rVmyXiggOB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rVmyXiggOB .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rVmyXiggOB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rVmyXiggOB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rVmyXiggOB .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rVmyXiggOB .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rVmyXiggOB .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rVmyXiggOB .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rVmyXiggOB .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rVmyXiggOB .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rVmyXiggOB .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rVmyXiggOB .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rVmyXiggOB .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rVmyXiggOB .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rVmyXiggOB .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rVmyXiggOB .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rVmyXiggOB .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rVmyXiggOB .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rVmyXiggOB .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rVmyXiggOB .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rVmyXiggOB .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rVmyXiggOB .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rVmyXiggOB .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rVmyXiggOB .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rVmyXiggOB .navbar {
    display: block;
    padding: 0;
  }
  .cid-rVmyXiggOB .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rVmyXiggOB .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rVmyXiggOB .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rVmyXiggOB .navbar-toggler {
    display: none;
  }
  .cid-rVmyXiggOB .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rVmyXiggOB .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rVmyXiggOB .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rVmyXiggOB .menu-logo {
  margin-right: auto;
}
.cid-rVmyXiggOB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rVmyXiggOB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rVmyXiggOB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rVmyXiggOB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rVmyXiggOB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rVmyXiggOB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rVmyXiggOB .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rVmyXiggOB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rVmyXiggOB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVmyXiggOB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rVmyXiggOB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rVmyXiggOB .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rVmyXiggOB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rVmyXiggOB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rVmyXiggOB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rVmyXiggOB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rVmyXiggOB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rVmyXiggOB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rVmyXiggOB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rVmyXiggOB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rVmyXiggOB .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rVmyXiggOB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rVmyXiggOB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rVmyXiggOB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rVmyXiggOB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rVmyXiggOB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVmyXiggOB button.navbar-toggler:focus {
  outline: none;
}
.cid-rVmyXiggOB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rVmyXiggOB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rVmyXiggOB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rVmyXiggOB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rVmyXiggOB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rVmyXiggOB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rVmyXiggOB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rVmyXiggOB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rVmyXiggOB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rVmyXiggOB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rVmyXiggOB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rVmyXiggOB .collapsed .btn {
  display: -webkit-flex;
}
.cid-rVmyXiggOB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rVmyXiggOB .collapsed .navbar-collapse.collapsing,
.cid-rVmyXiggOB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rVmyXiggOB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rVmyXiggOB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rVmyXiggOB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rVmyXiggOB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rVmyXiggOB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rVmyXiggOB .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rVmyXiggOB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rVmyXiggOB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rVmyXiggOB .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rVmyXiggOB .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rVmyXiggOB .collapsed button.navbar-toggler {
  display: block;
}
.cid-rVmyXiggOB .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rVmyXiggOB .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rVmyXiggOB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rVmyXiggOB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rVmyXiggOB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rVmyXiggOB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rVmyXiggOB .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rVmyXiggOB .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rVmyXiggOB .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rVmyXiggOB .nav-link:focus {
  outline: none;
}
.cid-rVmyXiggOB .navbar-toggler {
  position: relative;
}
.cid-rVmyXiggOB .dropdown-item.active,
.cid-rVmyXiggOB .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-rVmyXiggOB .nav-link:hover,
.cid-rVmyXiggOB .dropdown-item:hover {
  color: #74253d;
}
.cid-rVqiABy2cv.popup-builder {
  background-color: #ffffff;
}
.cid-rVqiABy2cv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqiABy2cv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqiABy2cv .modal-content,
.cid-rVqiABy2cv .modal-dialog {
  height: auto;
}
.cid-rVqiABy2cv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqiABy2cv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqiABy2cv .form-wrapper .mbr-form .form-group,
  .cid-rVqiABy2cv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqiABy2cv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqiABy2cv .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqiABy2cv .mbr-text {
  text-align: center;
}
.cid-rVqiABy2cv .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqiABy2cv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqiABy2cv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqiABy2cv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqiABy2cv .modal-open {
  overflow: hidden;
}
.cid-rVqiABy2cv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqiABy2cv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqiABy2cv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqiABy2cv .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqiABy2cv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqiABy2cv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqiABy2cv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqiABy2cv .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqiABy2cv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqiABy2cv .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqiABy2cv .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqiABy2cv .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqiABy2cv .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqiABy2cv .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqiABy2cv .modal-header .close:focus {
  outline: none;
}
.cid-rVqiABy2cv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqiABy2cv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqiABy2cv .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqiABy2cv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqiABy2cv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqiABy2cv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqiABy2cv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqiABy2cv .modal-sm {
    max-width: 300px;
  }
  .cid-rVqiABy2cv .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqiABy2cv .modal-lg,
  .cid-rVqiABy2cv .modal-xl {
    max-width: 800px;
  }
  .cid-rVqiABy2cv .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqiABy2cv .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqiABy2cv .container {
    max-width: 1140px;
  }
}
.cid-rVqiABy2cv .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqiABy2cv .container {
    max-width: 720px;
  }
}
.cid-rVqiABy2cv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqiABy2cv .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqiABy2cv .form-group {
  margin-bottom: 1rem;
}
.cid-rVqiABy2cv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqiABy2cv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqiABy2cv .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvBWvl.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvBWvl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvBWvl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvBWvl .modal-content,
.cid-tsQahvBWvl .modal-dialog {
  height: auto;
}
.cid-tsQahvBWvl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvBWvl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvBWvl .form-wrapper .mbr-form .form-group,
  .cid-tsQahvBWvl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvBWvl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvBWvl .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvBWvl .mbr-text {
  text-align: center;
}
.cid-tsQahvBWvl .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvBWvl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvBWvl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvBWvl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvBWvl .modal-open {
  overflow: hidden;
}
.cid-tsQahvBWvl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvBWvl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvBWvl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvBWvl .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvBWvl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvBWvl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvBWvl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvBWvl .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvBWvl .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvBWvl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvBWvl .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvBWvl .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvBWvl .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvBWvl .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvBWvl .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvBWvl .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvBWvl .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvBWvl .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvBWvl .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvBWvl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvBWvl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvBWvl .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvBWvl .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvBWvl .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvBWvl .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvBWvl .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvBWvl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvBWvl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvBWvl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvBWvl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvBWvl .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvBWvl .modal-lg,
  .cid-tsQahvBWvl .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvBWvl .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvBWvl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvBWvl .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvBWvl .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvBWvl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvBWvl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvBWvl .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvBWvl .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvBWvl .mbr-section-btn .btn {
  margin: 0;
}
.cid-qWCw7Fc4fd {
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-2000x1823.jpg");
}
.cid-qWCw7Fc4fd .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-qWCw7Fc4fd .mbr-overlay {
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-qWCw7Fc4fd H1 {
  color: #f9f9f9;
}
.cid-sRuZlxDDOF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sRuZlxDDOF .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sRuZlxDDOF .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sRuZlxDDOF p {
  line-height: 1.6;
}
.cid-sRuZlxDDOF .rev,
.cid-sRuZlxDDOF .mbr-iconfont {
  display: inline-block;
}
.cid-sRuZlxDDOF .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sRuZlxDDOF .card-box {
  padding: 1.5rem;
}
.cid-sRuZlxDDOF .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sRuZlxDDOF .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sRuZlxDDOF .mbr-section-title,
.cid-sRuZlxDDOF .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sRuZlxDDOF .rev {
  color: #0a1c44;
}
.cid-sRuZlxDDOF .card-text,
.cid-sRuZlxDDOF .mbr-section-btn,
.cid-sRuZlxDDOF .ico-line {
  color: #767676;
}
.cid-sQugfvtkYW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sQugfvtkYW .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sQugfvtkYW .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sQugfvtkYW p {
  line-height: 1.6;
}
.cid-sQugfvtkYW .rev,
.cid-sQugfvtkYW .mbr-iconfont {
  display: inline-block;
}
.cid-sQugfvtkYW .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-sQugfvtkYW .card-box {
  padding: 1.5rem;
}
.cid-sQugfvtkYW .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sQugfvtkYW .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sQugfvtkYW .mbr-section-title,
.cid-sQugfvtkYW .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sQugfvtkYW .rev {
  color: #0a1c44;
}
.cid-sQugfvtkYW .card-text,
.cid-sQugfvtkYW .mbr-section-btn,
.cid-sQugfvtkYW .ico-line {
  color: #767676;
}
.cid-sOiuvBg7IL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sOiuvBg7IL .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sOiuvBg7IL .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sOiuvBg7IL p {
  line-height: 1.6;
}
.cid-sOiuvBg7IL .rev,
.cid-sOiuvBg7IL .mbr-iconfont {
  display: inline-block;
}
.cid-sOiuvBg7IL .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sOiuvBg7IL .card-box {
  padding: 1.5rem;
}
.cid-sOiuvBg7IL .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sOiuvBg7IL .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sOiuvBg7IL .mbr-section-title,
.cid-sOiuvBg7IL .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sOiuvBg7IL .rev {
  color: #0a1c44;
}
.cid-sOiuvBg7IL .card-text,
.cid-sOiuvBg7IL .mbr-section-btn,
.cid-sOiuvBg7IL .ico-line {
  color: #767676;
}
.cid-sMd7t8F8Db {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sMd7t8F8Db .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sMd7t8F8Db .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sMd7t8F8Db p {
  line-height: 1.6;
}
.cid-sMd7t8F8Db .rev,
.cid-sMd7t8F8Db .mbr-iconfont {
  display: inline-block;
}
.cid-sMd7t8F8Db .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sMd7t8F8Db .card-box {
  padding: 1.5rem;
}
.cid-sMd7t8F8Db .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sMd7t8F8Db .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sMd7t8F8Db .mbr-section-title,
.cid-sMd7t8F8Db .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sMd7t8F8Db .rev {
  color: #0a1c44;
}
.cid-sMd7t8F8Db .card-text,
.cid-sMd7t8F8Db .mbr-section-btn,
.cid-sMd7t8F8Db .ico-line {
  color: #767676;
}
.cid-sKcGIZ6eTu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sKcGIZ6eTu .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sKcGIZ6eTu .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sKcGIZ6eTu p {
  line-height: 1.6;
}
.cid-sKcGIZ6eTu .rev,
.cid-sKcGIZ6eTu .mbr-iconfont {
  display: inline-block;
}
.cid-sKcGIZ6eTu .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sKcGIZ6eTu .card-box {
  padding: 1.5rem;
}
.cid-sKcGIZ6eTu .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sKcGIZ6eTu .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sKcGIZ6eTu .mbr-section-title,
.cid-sKcGIZ6eTu .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKcGIZ6eTu .rev {
  color: #0a1c44;
}
.cid-sKcGIZ6eTu .card-text,
.cid-sKcGIZ6eTu .mbr-section-btn,
.cid-sKcGIZ6eTu .ico-line {
  color: #767676;
}
.cid-sIeyDv3cpL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sIeyDv3cpL .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sIeyDv3cpL .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sIeyDv3cpL p {
  line-height: 1.6;
}
.cid-sIeyDv3cpL .rev,
.cid-sIeyDv3cpL .mbr-iconfont {
  display: inline-block;
}
.cid-sIeyDv3cpL .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sIeyDv3cpL .card-box {
  padding: 1.5rem;
}
.cid-sIeyDv3cpL .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sIeyDv3cpL .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sIeyDv3cpL .mbr-section-title,
.cid-sIeyDv3cpL .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sIeyDv3cpL .rev {
  color: #0a1c44;
}
.cid-sIeyDv3cpL .card-text,
.cid-sIeyDv3cpL .mbr-section-btn,
.cid-sIeyDv3cpL .ico-line {
  color: #767676;
}
.cid-sGhnbyTS7H {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sGhnbyTS7H .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sGhnbyTS7H .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sGhnbyTS7H p {
  line-height: 1.6;
}
.cid-sGhnbyTS7H .rev,
.cid-sGhnbyTS7H .mbr-iconfont {
  display: inline-block;
}
.cid-sGhnbyTS7H .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sGhnbyTS7H .card-box {
  padding: 1.5rem;
}
.cid-sGhnbyTS7H .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sGhnbyTS7H .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sGhnbyTS7H .mbr-section-title,
.cid-sGhnbyTS7H .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sGhnbyTS7H .rev {
  color: #0a1c44;
}
.cid-sGhnbyTS7H .card-text,
.cid-sGhnbyTS7H .mbr-section-btn,
.cid-sGhnbyTS7H .ico-line {
  color: #767676;
}
.cid-sEcWjCjsmB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sEcWjCjsmB .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sEcWjCjsmB .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sEcWjCjsmB p {
  line-height: 1.6;
}
.cid-sEcWjCjsmB .rev,
.cid-sEcWjCjsmB .mbr-iconfont {
  display: inline-block;
}
.cid-sEcWjCjsmB .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sEcWjCjsmB .card-box {
  padding: 1.5rem;
}
.cid-sEcWjCjsmB .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sEcWjCjsmB .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sEcWjCjsmB .mbr-section-title,
.cid-sEcWjCjsmB .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sEcWjCjsmB .rev {
  color: #0a1c44;
}
.cid-sEcWjCjsmB .card-text,
.cid-sEcWjCjsmB .mbr-section-btn,
.cid-sEcWjCjsmB .ico-line {
  color: #767676;
}
.cid-sCjha6zH9S {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sCjha6zH9S .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sCjha6zH9S .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sCjha6zH9S p {
  line-height: 1.6;
}
.cid-sCjha6zH9S .rev,
.cid-sCjha6zH9S .mbr-iconfont {
  display: inline-block;
}
.cid-sCjha6zH9S .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sCjha6zH9S .card-box {
  padding: 1.5rem;
}
.cid-sCjha6zH9S .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sCjha6zH9S .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sCjha6zH9S .mbr-section-title,
.cid-sCjha6zH9S .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sCjha6zH9S .rev {
  color: #0a1c44;
}
.cid-sCjha6zH9S .card-text,
.cid-sCjha6zH9S .mbr-section-btn,
.cid-sCjha6zH9S .ico-line {
  color: #767676;
}
.cid-sAeKFYRLsa {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sAeKFYRLsa .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sAeKFYRLsa .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sAeKFYRLsa p {
  line-height: 1.6;
}
.cid-sAeKFYRLsa .rev,
.cid-sAeKFYRLsa .mbr-iconfont {
  display: inline-block;
}
.cid-sAeKFYRLsa .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sAeKFYRLsa .card-box {
  padding: 1.5rem;
}
.cid-sAeKFYRLsa .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sAeKFYRLsa .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sAeKFYRLsa .mbr-section-title,
.cid-sAeKFYRLsa .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sAeKFYRLsa .rev {
  color: #0a1c44;
}
.cid-sAeKFYRLsa .card-text,
.cid-sAeKFYRLsa .mbr-section-btn,
.cid-sAeKFYRLsa .ico-line {
  color: #767676;
}
.cid-syjc0Z6HFw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-syjc0Z6HFw .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-syjc0Z6HFw .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-syjc0Z6HFw p {
  line-height: 1.6;
}
.cid-syjc0Z6HFw .rev,
.cid-syjc0Z6HFw .mbr-iconfont {
  display: inline-block;
}
.cid-syjc0Z6HFw .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-syjc0Z6HFw .card-box {
  padding: 1.5rem;
}
.cid-syjc0Z6HFw .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-syjc0Z6HFw .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-syjc0Z6HFw .mbr-section-title,
.cid-syjc0Z6HFw .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-syjc0Z6HFw .rev {
  color: #0a1c44;
}
.cid-syjc0Z6HFw .card-text,
.cid-syjc0Z6HFw .mbr-section-btn,
.cid-syjc0Z6HFw .ico-line {
  color: #767676;
}
.cid-swibfCkrw5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-swibfCkrw5 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-swibfCkrw5 .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-swibfCkrw5 p {
  line-height: 1.6;
}
.cid-swibfCkrw5 .rev,
.cid-swibfCkrw5 .mbr-iconfont {
  display: inline-block;
}
.cid-swibfCkrw5 .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-swibfCkrw5 .card-box {
  padding: 1.5rem;
}
.cid-swibfCkrw5 .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-swibfCkrw5 .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-swibfCkrw5 .mbr-section-title,
.cid-swibfCkrw5 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-swibfCkrw5 .rev {
  color: #0a1c44;
}
.cid-swibfCkrw5 .card-text,
.cid-swibfCkrw5 .mbr-section-btn,
.cid-swibfCkrw5 .ico-line {
  color: #767676;
}
.cid-suicnPp0zW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-suicnPp0zW .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-suicnPp0zW .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-suicnPp0zW p {
  line-height: 1.6;
}
.cid-suicnPp0zW .rev,
.cid-suicnPp0zW .mbr-iconfont {
  display: inline-block;
}
.cid-suicnPp0zW .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-suicnPp0zW .card-box {
  padding: 1.5rem;
}
.cid-suicnPp0zW .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-suicnPp0zW .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-suicnPp0zW .mbr-section-title,
.cid-suicnPp0zW .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-suicnPp0zW .rev {
  color: #0a1c44;
}
.cid-suicnPp0zW .card-text,
.cid-suicnPp0zW .mbr-section-btn,
.cid-suicnPp0zW .ico-line {
  color: #767676;
}
.cid-ssjneyWd1z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-ssjneyWd1z .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-ssjneyWd1z .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-ssjneyWd1z p {
  line-height: 1.6;
}
.cid-ssjneyWd1z .rev,
.cid-ssjneyWd1z .mbr-iconfont {
  display: inline-block;
}
.cid-ssjneyWd1z .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-ssjneyWd1z .card-box {
  padding: 1.5rem;
}
.cid-ssjneyWd1z .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-ssjneyWd1z .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-ssjneyWd1z .mbr-section-title,
.cid-ssjneyWd1z .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-ssjneyWd1z .rev {
  color: #0a1c44;
}
.cid-ssjneyWd1z .card-text,
.cid-ssjneyWd1z .mbr-section-btn,
.cid-ssjneyWd1z .ico-line {
  color: #767676;
}
.cid-sqszHBmsqW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sqszHBmsqW .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sqszHBmsqW .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sqszHBmsqW p {
  line-height: 1.6;
}
.cid-sqszHBmsqW .rev,
.cid-sqszHBmsqW .mbr-iconfont {
  display: inline-block;
}
.cid-sqszHBmsqW .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sqszHBmsqW .card-box {
  padding: 1.5rem;
}
.cid-sqszHBmsqW .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sqszHBmsqW .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sqszHBmsqW .mbr-section-title,
.cid-sqszHBmsqW .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sqszHBmsqW .rev {
  color: #0a1c44;
}
.cid-sqszHBmsqW .card-text,
.cid-sqszHBmsqW .mbr-section-btn,
.cid-sqszHBmsqW .ico-line {
  color: #767676;
}
.cid-sou1rDb8wG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sou1rDb8wG .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sou1rDb8wG .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sou1rDb8wG p {
  line-height: 1.6;
}
.cid-sou1rDb8wG .rev,
.cid-sou1rDb8wG .mbr-iconfont {
  display: inline-block;
}
.cid-sou1rDb8wG .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-sou1rDb8wG .card-box {
  padding: 1.5rem;
}
.cid-sou1rDb8wG .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sou1rDb8wG .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sou1rDb8wG .mbr-section-title,
.cid-sou1rDb8wG .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sou1rDb8wG .rev {
  color: #0a1c44;
}
.cid-sou1rDb8wG .card-text,
.cid-sou1rDb8wG .mbr-section-btn,
.cid-sou1rDb8wG .ico-line {
  color: #767676;
}
.cid-smrsh4Sbxo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-smrsh4Sbxo .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-smrsh4Sbxo .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-smrsh4Sbxo p {
  line-height: 1.6;
}
.cid-smrsh4Sbxo .rev,
.cid-smrsh4Sbxo .mbr-iconfont {
  display: inline-block;
}
.cid-smrsh4Sbxo .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-smrsh4Sbxo .card-box {
  padding: 1.5rem;
}
.cid-smrsh4Sbxo .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-smrsh4Sbxo .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-smrsh4Sbxo .mbr-section-title,
.cid-smrsh4Sbxo .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-smrsh4Sbxo .rev {
  color: #0a1c44;
}
.cid-smrsh4Sbxo .card-text,
.cid-smrsh4Sbxo .mbr-section-btn,
.cid-smrsh4Sbxo .ico-line {
  color: #767676;
}
.cid-skpkdmFnJb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-skpkdmFnJb .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-skpkdmFnJb .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-skpkdmFnJb p {
  line-height: 1.6;
}
.cid-skpkdmFnJb .rev,
.cid-skpkdmFnJb .mbr-iconfont {
  display: inline-block;
}
.cid-skpkdmFnJb .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-skpkdmFnJb .card-box {
  padding: 1.5rem;
}
.cid-skpkdmFnJb .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-skpkdmFnJb .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-skpkdmFnJb .mbr-section-title,
.cid-skpkdmFnJb .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-skpkdmFnJb .rev {
  color: #0a1c44;
}
.cid-skpkdmFnJb .card-text,
.cid-skpkdmFnJb .mbr-section-btn,
.cid-skpkdmFnJb .ico-line {
  color: #767676;
}
.cid-sh6EF6FaRr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sh6EF6FaRr .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sh6EF6FaRr .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sh6EF6FaRr p {
  line-height: 1.6;
}
.cid-sh6EF6FaRr .rev,
.cid-sh6EF6FaRr .mbr-iconfont {
  display: inline-block;
}
.cid-sh6EF6FaRr .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-sh6EF6FaRr .card-box {
  padding: 1.5rem;
}
.cid-sh6EF6FaRr .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sh6EF6FaRr .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sh6EF6FaRr .mbr-section-title,
.cid-sh6EF6FaRr .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sh6EF6FaRr .rev {
  color: #0a1c44;
}
.cid-sh6EF6FaRr .card-text,
.cid-sh6EF6FaRr .mbr-section-btn,
.cid-sh6EF6FaRr .ico-line {
  color: #767676;
}
.cid-sfaMjnUF0r {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sfaMjnUF0r .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sfaMjnUF0r .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sfaMjnUF0r p {
  line-height: 1.6;
}
.cid-sfaMjnUF0r .rev,
.cid-sfaMjnUF0r .mbr-iconfont {
  display: inline-block;
}
.cid-sfaMjnUF0r .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-sfaMjnUF0r .card-box {
  padding: 1.5rem;
}
.cid-sfaMjnUF0r .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sfaMjnUF0r .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sfaMjnUF0r .mbr-section-title,
.cid-sfaMjnUF0r .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sfaMjnUF0r .rev {
  color: #0a1c44;
}
.cid-sfaMjnUF0r .card-text,
.cid-sfaMjnUF0r .mbr-section-btn,
.cid-sfaMjnUF0r .ico-line {
  color: #767676;
}
.cid-sdblyOOvwU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sdblyOOvwU .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sdblyOOvwU .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sdblyOOvwU p {
  line-height: 1.6;
}
.cid-sdblyOOvwU .rev,
.cid-sdblyOOvwU .mbr-iconfont {
  display: inline-block;
}
.cid-sdblyOOvwU .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-sdblyOOvwU .card-box {
  padding: 1.5rem;
}
.cid-sdblyOOvwU .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sdblyOOvwU .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sdblyOOvwU .mbr-section-title,
.cid-sdblyOOvwU .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sdblyOOvwU .rev {
  color: #0a1c44;
}
.cid-sdblyOOvwU .card-text,
.cid-sdblyOOvwU .mbr-section-btn,
.cid-sdblyOOvwU .ico-line {
  color: #767676;
}
.cid-sb9AZfEBn1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-sb9AZfEBn1 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-sb9AZfEBn1 .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-sb9AZfEBn1 p {
  line-height: 1.6;
}
.cid-sb9AZfEBn1 .rev,
.cid-sb9AZfEBn1 .mbr-iconfont {
  display: inline-block;
}
.cid-sb9AZfEBn1 .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-sb9AZfEBn1 .card-box {
  padding: 1.5rem;
}
.cid-sb9AZfEBn1 .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sb9AZfEBn1 .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sb9AZfEBn1 .mbr-section-title,
.cid-sb9AZfEBn1 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sb9AZfEBn1 .rev {
  color: #0a1c44;
}
.cid-sb9AZfEBn1 .card-text,
.cid-sb9AZfEBn1 .mbr-section-btn,
.cid-sb9AZfEBn1 .ico-line {
  color: #767676;
}
.cid-s9aI4SWa61 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s9aI4SWa61 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-s9aI4SWa61 .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-s9aI4SWa61 p {
  line-height: 1.6;
}
.cid-s9aI4SWa61 .rev,
.cid-s9aI4SWa61 .mbr-iconfont {
  display: inline-block;
}
.cid-s9aI4SWa61 .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-s9aI4SWa61 .card-box {
  padding: 1.5rem;
}
.cid-s9aI4SWa61 .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-s9aI4SWa61 .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-s9aI4SWa61 .mbr-section-title,
.cid-s9aI4SWa61 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-s9aI4SWa61 .rev {
  color: #0a1c44;
}
.cid-s9aI4SWa61 .card-text,
.cid-s9aI4SWa61 .mbr-section-btn,
.cid-s9aI4SWa61 .ico-line {
  color: #767676;
}
.cid-s7h73dkjC8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s7h73dkjC8 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-s7h73dkjC8 .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-s7h73dkjC8 p {
  line-height: 1.6;
}
.cid-s7h73dkjC8 .rev,
.cid-s7h73dkjC8 .mbr-iconfont {
  display: inline-block;
}
.cid-s7h73dkjC8 .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-s7h73dkjC8 .card-box {
  padding: 1.5rem;
}
.cid-s7h73dkjC8 .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-s7h73dkjC8 .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-s7h73dkjC8 .mbr-section-title,
.cid-s7h73dkjC8 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-s7h73dkjC8 .rev {
  color: #0a1c44;
}
.cid-s7h73dkjC8 .card-text,
.cid-s7h73dkjC8 .mbr-section-btn,
.cid-s7h73dkjC8 .ico-line {
  color: #767676;
}
.cid-s5SJh42JK7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s5SJh42JK7 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-s5SJh42JK7 .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-s5SJh42JK7 p {
  line-height: 1.6;
}
.cid-s5SJh42JK7 .rev,
.cid-s5SJh42JK7 .mbr-iconfont {
  display: inline-block;
}
.cid-s5SJh42JK7 .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-s5SJh42JK7 .card-box {
  padding: 1.5rem;
}
.cid-s5SJh42JK7 .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-s5SJh42JK7 .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-s5SJh42JK7 .mbr-section-title,
.cid-s5SJh42JK7 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-s5SJh42JK7 .rev {
  color: #0a1c44;
}
.cid-s5SJh42JK7 .card-text,
.cid-s5SJh42JK7 .mbr-section-btn,
.cid-s5SJh42JK7 .ico-line {
  color: #767676;
}
.cid-s3Tpvttvmu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s3Tpvttvmu .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-s3Tpvttvmu .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-s3Tpvttvmu p {
  line-height: 1.6;
}
.cid-s3Tpvttvmu .rev,
.cid-s3Tpvttvmu .mbr-iconfont {
  display: inline-block;
}
.cid-s3Tpvttvmu .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-s3Tpvttvmu .card-box {
  padding: 1.5rem;
}
.cid-s3Tpvttvmu .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-s3Tpvttvmu .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-s3Tpvttvmu .mbr-section-title,
.cid-s3Tpvttvmu .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-s3Tpvttvmu .rev {
  color: #0a1c44;
}
.cid-s3Tpvttvmu .card-text,
.cid-s3Tpvttvmu .mbr-section-btn,
.cid-s3Tpvttvmu .ico-line {
  color: #767676;
}
.cid-s1XAhm7wvE {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s1XAhm7wvE .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-s1XAhm7wvE .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-s1XAhm7wvE p {
  line-height: 1.6;
}
.cid-s1XAhm7wvE .rev,
.cid-s1XAhm7wvE .mbr-iconfont {
  display: inline-block;
}
.cid-s1XAhm7wvE .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-s1XAhm7wvE .card-box {
  padding: 1.5rem;
}
.cid-s1XAhm7wvE .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-s1XAhm7wvE .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-s1XAhm7wvE .mbr-section-title,
.cid-s1XAhm7wvE .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-s1XAhm7wvE .rev {
  color: #0a1c44;
}
.cid-s1XAhm7wvE .card-text,
.cid-s1XAhm7wvE .mbr-section-btn,
.cid-s1XAhm7wvE .ico-line {
  color: #767676;
}
.cid-rZVOr2cBa7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rZVOr2cBa7 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-rZVOr2cBa7 .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-rZVOr2cBa7 p {
  line-height: 1.6;
}
.cid-rZVOr2cBa7 .rev,
.cid-rZVOr2cBa7 .mbr-iconfont {
  display: inline-block;
}
.cid-rZVOr2cBa7 .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-rZVOr2cBa7 .card-box {
  padding: 1.5rem;
}
.cid-rZVOr2cBa7 .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-rZVOr2cBa7 .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-rZVOr2cBa7 .mbr-section-title,
.cid-rZVOr2cBa7 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-rZVOr2cBa7 .rev {
  color: #0a1c44;
}
.cid-rZVOr2cBa7 .card-text,
.cid-rZVOr2cBa7 .mbr-section-btn,
.cid-rZVOr2cBa7 .ico-line {
  color: #767676;
}
.cid-rXXculyGLC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rXXculyGLC .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-rXXculyGLC .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-rXXculyGLC p {
  line-height: 1.6;
}
.cid-rXXculyGLC .rev,
.cid-rXXculyGLC .mbr-iconfont {
  display: inline-block;
}
.cid-rXXculyGLC .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-rXXculyGLC .card-box {
  padding: 1.5rem;
}
.cid-rXXculyGLC .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-rXXculyGLC .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-rXXculyGLC .mbr-section-title,
.cid-rXXculyGLC .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-rXXculyGLC .rev {
  color: #0a1c44;
}
.cid-rXXculyGLC .card-text,
.cid-rXXculyGLC .mbr-section-btn,
.cid-rXXculyGLC .ico-line {
  color: #767676;
}
.cid-rVYDf4tmtt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rVYDf4tmtt .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-rVYDf4tmtt .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-rVYDf4tmtt p {
  line-height: 1.6;
}
.cid-rVYDf4tmtt .rev,
.cid-rVYDf4tmtt .mbr-iconfont {
  display: inline-block;
}
.cid-rVYDf4tmtt .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-rVYDf4tmtt .card-box {
  padding: 1.5rem;
}
.cid-rVYDf4tmtt .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-rVYDf4tmtt .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-rVYDf4tmtt .mbr-section-title,
.cid-rVYDf4tmtt .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-rVYDf4tmtt .rev {
  color: #0a1c44;
}
.cid-rVYDf4tmtt .card-text,
.cid-rVYDf4tmtt .mbr-section-btn,
.cid-rVYDf4tmtt .ico-line {
  color: #767676;
}
.cid-rU09v1ZF7y {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rU09v1ZF7y .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-rU09v1ZF7y .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-rU09v1ZF7y p {
  line-height: 1.6;
}
.cid-rU09v1ZF7y .rev,
.cid-rU09v1ZF7y .mbr-iconfont {
  display: inline-block;
}
.cid-rU09v1ZF7y .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-rU09v1ZF7y .card-box {
  padding: 1.5rem;
}
.cid-rU09v1ZF7y .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-rU09v1ZF7y .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-rU09v1ZF7y .mbr-section-title,
.cid-rU09v1ZF7y .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-rU09v1ZF7y .rev {
  color: #0a1c44;
}
.cid-rU09v1ZF7y .card-text,
.cid-rU09v1ZF7y .mbr-section-btn,
.cid-rU09v1ZF7y .ico-line {
  color: #767676;
}
.cid-rSxvgfpOY5 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rSxvgfpOY5 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-rSxvgfpOY5 .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-rSxvgfpOY5 p {
  line-height: 1.6;
}
.cid-rSxvgfpOY5 .rev,
.cid-rSxvgfpOY5 .mbr-iconfont {
  display: inline-block;
}
.cid-rSxvgfpOY5 .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-rSxvgfpOY5 .card-box {
  padding: 1.5rem;
}
.cid-rSxvgfpOY5 .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-rSxvgfpOY5 .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-rSxvgfpOY5 .mbr-section-title,
.cid-rSxvgfpOY5 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-rSxvgfpOY5 .rev {
  color: #0a1c44;
}
.cid-rSxvgfpOY5 .card-text,
.cid-rSxvgfpOY5 .mbr-section-btn,
.cid-rSxvgfpOY5 .ico-line {
  color: #767676;
}
.cid-rQGDUvLqdz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rQGDUvLqdz .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-rQGDUvLqdz .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-rQGDUvLqdz p {
  line-height: 1.6;
}
.cid-rQGDUvLqdz .rev,
.cid-rQGDUvLqdz .mbr-iconfont {
  display: inline-block;
}
.cid-rQGDUvLqdz .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-rQGDUvLqdz .card-box {
  padding: 1.5rem;
}
.cid-rQGDUvLqdz .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-rQGDUvLqdz .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-rQGDUvLqdz .mbr-section-title,
.cid-rQGDUvLqdz .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-rQGDUvLqdz .rev {
  color: #0a1c44;
}
.cid-rQGDUvLqdz .card-text,
.cid-rQGDUvLqdz .mbr-section-btn,
.cid-rQGDUvLqdz .ico-line {
  color: #767676;
}
.cid-rOIP87VOnb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rOIP87VOnb .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-rOIP87VOnb .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-rOIP87VOnb p {
  line-height: 1.6;
}
.cid-rOIP87VOnb .rev,
.cid-rOIP87VOnb .mbr-iconfont {
  display: inline-block;
}
.cid-rOIP87VOnb .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-rOIP87VOnb .card-box {
  padding: 1.5rem;
}
.cid-rOIP87VOnb .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-rOIP87VOnb .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-rOIP87VOnb .mbr-section-title,
.cid-rOIP87VOnb .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-rOIP87VOnb .rev {
  color: #0a1c44;
}
.cid-rOIP87VOnb .card-text,
.cid-rOIP87VOnb .mbr-section-btn,
.cid-rOIP87VOnb .ico-line {
  color: #767676;
}
.cid-rMMtiqocdY {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rMMtiqocdY .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-rMMtiqocdY .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-rMMtiqocdY p {
  line-height: 1.6;
}
.cid-rMMtiqocdY .rev,
.cid-rMMtiqocdY .mbr-iconfont {
  display: inline-block;
}
.cid-rMMtiqocdY .card-title {
  color: #74253d;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-rMMtiqocdY .card-box {
  padding: 1.5rem;
}
.cid-rMMtiqocdY .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-rMMtiqocdY .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-rMMtiqocdY .mbr-section-title,
.cid-rMMtiqocdY .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-rMMtiqocdY .rev {
  color: #0a1c44;
}
.cid-rMMtiqocdY .card-text,
.cid-rMMtiqocdY .mbr-section-btn,
.cid-rMMtiqocdY .ico-line {
  color: #767676;
}
.cid-rVqckeXI6O {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rVqckeXI6O .mbr-section-subtitle {
  color: #767676;
}
.cid-rVqckeXI6O ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqckeXI6O ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rVqckeXI6O ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rVqckeXI6O ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rVqckeXI6O .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rVqckeXI6O .mbr-section-title {
  color: #feffe3;
}
.cid-tsWQkTe7H9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-tsWQkTe7H9 p {
  text-align: center;
}
.cid-tsWQkTe7H9 .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsWQkTe7H9 .btn-underline:hover {
  color: #505050;
}
.cid-tsWQkTe7H9 .btn-underline:before {
  background-color: #505050;
}
.cid-tsWQkTe7H9 .social-list a:focus {
  text-decoration: none;
}
.cid-tsWQkTe7H9 .text-copyright {
  width: 100%;
}
.cid-tsWQkTe7H9 .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-tsWQkTe7H9 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsWQkTe7H9 .logo-footer {
  line-height: normal;
}
.cid-tsWQkTe7H9 .copyright {
  display: flex;
  align-items: center;
}
.cid-tsWQkTe7H9 .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsWQkTe7H9 .mbr-section-btn {
  font-size: 16px;
}
.cid-tsWQkTe7H9 .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-rMSHzb1v1F .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-rMSHzb1v1F .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rMSHzb1v1F a {
  font-style: normal;
}
.cid-rMSHzb1v1F .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-rMSHzb1v1F .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-rMSHzb1v1F .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .content-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-rMSHzb1v1F .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-rMSHzb1v1F .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-rMSHzb1v1F .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-rMSHzb1v1F .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-rMSHzb1v1F .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .nav-dropdown .link {
  font-weight: 400;
}
.cid-rMSHzb1v1F .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-rMSHzb1v1F .content-right-side {
  text-align: center;
}
.cid-rMSHzb1v1F .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-rMSHzb1v1F .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-rMSHzb1v1F .menu-bottom {
    justify-content: flex-end;
  }
  .cid-rMSHzb1v1F img {
    height: 3.8rem !important;
  }
  .cid-rMSHzb1v1F .btn {
    display: -webkit-flex;
  }
  .cid-rMSHzb1v1F button.navbar-toggler {
    display: block;
  }
  .cid-rMSHzb1v1F .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-rMSHzb1v1F .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing,
  .cid-rMSHzb1v1F .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-rMSHzb1v1F .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMSHzb1v1F .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rMSHzb1v1F .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-rMSHzb1v1F .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-rMSHzb1v1F .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-rMSHzb1v1F .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-rMSHzb1v1F .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-rMSHzb1v1F .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-rMSHzb1v1F .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-rMSHzb1v1F .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-rMSHzb1v1F .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-rMSHzb1v1F .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-rMSHzb1v1F .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-rMSHzb1v1F .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-rMSHzb1v1F .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-rMSHzb1v1F .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-rMSHzb1v1F .navbar {
    display: block;
    padding: 0;
  }
  .cid-rMSHzb1v1F .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rMSHzb1v1F .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-rMSHzb1v1F .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rMSHzb1v1F .navbar-toggler {
    display: none;
  }
  .cid-rMSHzb1v1F .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMSHzb1v1F .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-rMSHzb1v1F .menu-logo {
  margin-right: auto;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMSHzb1v1F .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-rMSHzb1v1F .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rMSHzb1v1F .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMSHzb1v1F .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMSHzb1v1F .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-rMSHzb1v1F .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMSHzb1v1F .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMSHzb1v1F button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMSHzb1v1F button.navbar-toggler:focus {
  outline: none;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMSHzb1v1F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMSHzb1v1F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMSHzb1v1F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .btn {
  display: -webkit-flex;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-rMSHzb1v1F .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMSHzb1v1F .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rMSHzb1v1F .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-rMSHzb1v1F .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMSHzb1v1F .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-rMSHzb1v1F .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMSHzb1v1F .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMSHzb1v1F .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rMSHzb1v1F .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMSHzb1v1F .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-rMSHzb1v1F .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-rMSHzb1v1F .nav-link:focus {
  outline: none;
}
.cid-rMSHzb1v1F .navbar-toggler {
  position: relative;
}
.cid-rMSHzb1v1F .dropdown-item.active,
.cid-rMSHzb1v1F .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-rMSHzb1v1F .nav-link:hover,
.cid-rMSHzb1v1F .dropdown-item:hover {
  color: #74253d;
}
.cid-rMSHzb1v1F .widget-title,
.cid-rMSHzb1v1F .widget-icon {
  color: #ffffff;
}
.cid-rMSHzb1v1F .widget-text {
  color: #f9f9f9;
}
.cid-rVqiABx2De.popup-builder {
  background-color: #ffffff;
}
.cid-rVqiABx2De.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rVqiABx2De.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rVqiABx2De .modal-content,
.cid-rVqiABx2De .modal-dialog {
  height: auto;
}
.cid-rVqiABx2De .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rVqiABx2De .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rVqiABx2De .form-wrapper .mbr-form .form-group,
  .cid-rVqiABx2De .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rVqiABx2De .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rVqiABx2De .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVqiABx2De .mbr-text {
  text-align: center;
}
.cid-rVqiABx2De .pt-0 {
  padding-top: 0 !important;
}
.cid-rVqiABx2De .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rVqiABx2De .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rVqiABx2De .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rVqiABx2De .modal-open {
  overflow: hidden;
}
.cid-rVqiABx2De .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rVqiABx2De .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rVqiABx2De .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rVqiABx2De .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rVqiABx2De .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rVqiABx2De .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rVqiABx2De .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rVqiABx2De .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rVqiABx2De .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rVqiABx2De .modal-backdrop.fade {
  opacity: 0;
}
.cid-rVqiABx2De .modal-backdrop.show {
  opacity: .5;
}
.cid-rVqiABx2De .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rVqiABx2De .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rVqiABx2De .modal-header .close:hover {
  opacity: 1;
}
.cid-rVqiABx2De .modal-header .close:focus {
  outline: none;
}
.cid-rVqiABx2De .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rVqiABx2De .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rVqiABx2De .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rVqiABx2De .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rVqiABx2De .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rVqiABx2De .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rVqiABx2De .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rVqiABx2De .modal-sm {
    max-width: 300px;
  }
  .cid-rVqiABx2De .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rVqiABx2De .modal-lg,
  .cid-rVqiABx2De .modal-xl {
    max-width: 800px;
  }
  .cid-rVqiABx2De .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rVqiABx2De .modal-xl {
    max-width: 1140px;
  }
  .cid-rVqiABx2De .container {
    max-width: 1140px;
  }
}
.cid-rVqiABx2De .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rVqiABx2De .container {
    max-width: 720px;
  }
}
.cid-rVqiABx2De .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rVqiABx2De .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rVqiABx2De .form-group {
  margin-bottom: 1rem;
}
.cid-rVqiABx2De .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rVqiABx2De .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rVqiABx2De .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvBu7b.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvBu7b.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvBu7b.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvBu7b .modal-content,
.cid-tsQahvBu7b .modal-dialog {
  height: auto;
}
.cid-tsQahvBu7b .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvBu7b .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvBu7b .form-wrapper .mbr-form .form-group,
  .cid-tsQahvBu7b .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvBu7b .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvBu7b .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvBu7b .mbr-text {
  text-align: center;
}
.cid-tsQahvBu7b .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvBu7b .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvBu7b .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvBu7b .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvBu7b .modal-open {
  overflow: hidden;
}
.cid-tsQahvBu7b .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvBu7b .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvBu7b .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvBu7b .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvBu7b .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvBu7b .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvBu7b .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvBu7b .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvBu7b .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvBu7b .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvBu7b .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvBu7b .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvBu7b .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvBu7b .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvBu7b .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvBu7b .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvBu7b .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvBu7b .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvBu7b .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvBu7b .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvBu7b .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvBu7b .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvBu7b .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvBu7b .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvBu7b .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvBu7b .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvBu7b .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvBu7b .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvBu7b .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvBu7b .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvBu7b .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvBu7b .modal-lg,
  .cid-tsQahvBu7b .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvBu7b .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvBu7b .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvBu7b .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvBu7b .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvBu7b .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvBu7b .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvBu7b .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvBu7b .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvBu7b .mbr-section-btn .btn {
  margin: 0;
}
.cid-sTtvhAwDeC {
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-sTtvhAwDeC .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-sTtvhAwDeC .mbr-overlay {
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-sTtvhAwDeC H1 {
  color: #ffffff;
}
.cid-ui9STHTIgh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ui9STHTIgh .item-img {
  overflow: hidden;
}
.cid-ui9STHTIgh img,
.cid-ui9STHTIgh .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-ui9STHTIgh h5 {
  margin: 0;
}
.cid-ui9STHTIgh .item:focus,
.cid-ui9STHTIgh span:focus {
  outline: none;
}
.cid-ui9STHTIgh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ui9STHTIgh .item:hover img,
.cid-ui9STHTIgh .item:hover .item-img {
  filter: grayscale(0);
}
.cid-ui9STHTIgh .item:hover img {
  transform: scale(1.05);
}
.cid-ui9STHTIgh .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ui9STHTIgh .item-content {
  padding-top: 2rem;
}
.cid-ui9STHTIgh .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-ui9STHTIgh .item-title {
  color: #f9f9f9;
}
.cid-ufS1igSLSs {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ufS1igSLSs .item-img {
  overflow: hidden;
}
.cid-ufS1igSLSs img,
.cid-ufS1igSLSs .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-ufS1igSLSs h5 {
  margin: 0;
}
.cid-ufS1igSLSs .item:focus,
.cid-ufS1igSLSs span:focus {
  outline: none;
}
.cid-ufS1igSLSs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ufS1igSLSs .item:hover img,
.cid-ufS1igSLSs .item:hover .item-img {
  filter: grayscale(0);
}
.cid-ufS1igSLSs .item:hover img {
  transform: scale(1.05);
}
.cid-ufS1igSLSs .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ufS1igSLSs .item-content {
  padding-top: 2rem;
}
.cid-ufS1igSLSs .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-ufS1igSLSs .item-title {
  color: #f9f9f9;
}
.cid-uck0T7ZL5g {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uck0T7ZL5g .item-img {
  overflow: hidden;
}
.cid-uck0T7ZL5g img,
.cid-uck0T7ZL5g .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uck0T7ZL5g h5 {
  margin: 0;
}
.cid-uck0T7ZL5g .item:focus,
.cid-uck0T7ZL5g span:focus {
  outline: none;
}
.cid-uck0T7ZL5g .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uck0T7ZL5g .item:hover img,
.cid-uck0T7ZL5g .item:hover .item-img {
  filter: grayscale(0);
}
.cid-uck0T7ZL5g .item:hover img {
  transform: scale(1.05);
}
.cid-uck0T7ZL5g .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uck0T7ZL5g .item-content {
  padding-top: 2rem;
}
.cid-uck0T7ZL5g .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-uck0T7ZL5g .item-title {
  color: #f9f9f9;
}
.cid-u8HUAkxLoc {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u8HUAkxLoc .item-img {
  overflow: hidden;
}
.cid-u8HUAkxLoc img,
.cid-u8HUAkxLoc .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u8HUAkxLoc h5 {
  margin: 0;
}
.cid-u8HUAkxLoc .item:focus,
.cid-u8HUAkxLoc span:focus {
  outline: none;
}
.cid-u8HUAkxLoc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u8HUAkxLoc .item:hover img,
.cid-u8HUAkxLoc .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u8HUAkxLoc .item:hover img {
  transform: scale(1.05);
}
.cid-u8HUAkxLoc .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u8HUAkxLoc .item-content {
  padding-top: 2rem;
}
.cid-u8HUAkxLoc .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u8HUAkxLoc .item-title {
  color: #f9f9f9;
}
.cid-u64kgcjJ5s {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u64kgcjJ5s .item-img {
  overflow: hidden;
}
.cid-u64kgcjJ5s img,
.cid-u64kgcjJ5s .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u64kgcjJ5s h5 {
  margin: 0;
}
.cid-u64kgcjJ5s .item:focus,
.cid-u64kgcjJ5s span:focus {
  outline: none;
}
.cid-u64kgcjJ5s .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u64kgcjJ5s .item:hover img,
.cid-u64kgcjJ5s .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u64kgcjJ5s .item:hover img {
  transform: scale(1.05);
}
.cid-u64kgcjJ5s .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u64kgcjJ5s .item-content {
  padding-top: 2rem;
}
.cid-u64kgcjJ5s .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u64kgcjJ5s .item-title {
  color: #f9f9f9;
}
.cid-u3v2A83FGc {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u3v2A83FGc .item-img {
  overflow: hidden;
}
.cid-u3v2A83FGc img,
.cid-u3v2A83FGc .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u3v2A83FGc h5 {
  margin: 0;
}
.cid-u3v2A83FGc .item:focus,
.cid-u3v2A83FGc span:focus {
  outline: none;
}
.cid-u3v2A83FGc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u3v2A83FGc .item:hover img,
.cid-u3v2A83FGc .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u3v2A83FGc .item:hover img {
  transform: scale(1.05);
}
.cid-u3v2A83FGc .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u3v2A83FGc .item-content {
  padding-top: 2rem;
}
.cid-u3v2A83FGc .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u3v2A83FGc .item-title {
  color: #f9f9f9;
}
.cid-tY7itY6igw {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tY7itY6igw .item-img {
  overflow: hidden;
}
.cid-tY7itY6igw img,
.cid-tY7itY6igw .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tY7itY6igw h5 {
  margin: 0;
}
.cid-tY7itY6igw .item:focus,
.cid-tY7itY6igw span:focus {
  outline: none;
}
.cid-tY7itY6igw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tY7itY6igw .item:hover img,
.cid-tY7itY6igw .item:hover .item-img {
  filter: grayscale(0);
}
.cid-tY7itY6igw .item:hover img {
  transform: scale(1.05);
}
.cid-tY7itY6igw .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tY7itY6igw .item-content {
  padding-top: 2rem;
}
.cid-tY7itY6igw .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-tY7itY6igw .item-title {
  color: #f9f9f9;
}
.cid-sTtv3bSCBS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sTtv3bSCBS .block-title B {
  color: #feffe3;
}
.cid-sTtv3cME5H .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-sTtv3cME5H .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-sTtv3cME5H a {
  font-style: normal;
}
.cid-sTtv3cME5H .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sTtv3cME5H .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sTtv3cME5H .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTtv3cME5H .content-text {
  margin-bottom: 0;
}
.cid-sTtv3cME5H .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sTtv3cME5H .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sTtv3cME5H .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sTtv3cME5H .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sTtv3cME5H .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sTtv3cME5H .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sTtv3cME5H .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sTtv3cME5H .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sTtv3cME5H .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sTtv3cME5H .nav-dropdown .link {
  font-weight: 400;
}
.cid-sTtv3cME5H .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sTtv3cME5H .content-right-side {
  text-align: center;
}
.cid-sTtv3cME5H .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sTtv3cME5H .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sTtv3cME5H .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sTtv3cME5H .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sTtv3cME5H .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sTtv3cME5H .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sTtv3cME5H img {
    height: 3.8rem !important;
  }
  .cid-sTtv3cME5H .btn {
    display: -webkit-flex;
  }
  .cid-sTtv3cME5H button.navbar-toggler {
    display: block;
  }
  .cid-sTtv3cME5H .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sTtv3cME5H .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sTtv3cME5H .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sTtv3cME5H .navbar-collapse.collapsing,
  .cid-sTtv3cME5H .navbar-collapse.show {
    display: block !important;
  }
  .cid-sTtv3cME5H .navbar-collapse.collapsing .navbar-nav,
  .cid-sTtv3cME5H .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sTtv3cME5H .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sTtv3cME5H .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sTtv3cME5H .navbar-collapse.collapsing .navbar-buttons,
  .cid-sTtv3cME5H .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sTtv3cME5H .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sTtv3cME5H .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sTtv3cME5H .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sTtv3cME5H .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sTtv3cME5H .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sTtv3cME5H .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sTtv3cME5H .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sTtv3cME5H .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sTtv3cME5H .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-sTtv3cME5H .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sTtv3cME5H .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-sTtv3cME5H .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-sTtv3cME5H .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sTtv3cME5H .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sTtv3cME5H .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sTtv3cME5H .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-sTtv3cME5H .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTtv3cME5H .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sTtv3cME5H .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sTtv3cME5H .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sTtv3cME5H .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sTtv3cME5H .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sTtv3cME5H .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sTtv3cME5H .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sTtv3cME5H .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sTtv3cME5H .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sTtv3cME5H .navbar {
    display: block;
    padding: 0;
  }
  .cid-sTtv3cME5H .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sTtv3cME5H .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sTtv3cME5H .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sTtv3cME5H .navbar-toggler {
    display: none;
  }
  .cid-sTtv3cME5H .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sTtv3cME5H .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTtv3cME5H .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sTtv3cME5H .menu-logo {
  margin-right: auto;
}
.cid-sTtv3cME5H .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTtv3cME5H .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sTtv3cME5H .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sTtv3cME5H .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sTtv3cME5H .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sTtv3cME5H .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sTtv3cME5H .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sTtv3cME5H .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sTtv3cME5H .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTtv3cME5H .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sTtv3cME5H .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sTtv3cME5H .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sTtv3cME5H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTtv3cME5H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTtv3cME5H .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sTtv3cME5H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sTtv3cME5H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTtv3cME5H .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sTtv3cME5H .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTtv3cME5H .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sTtv3cME5H .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sTtv3cME5H .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sTtv3cME5H .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sTtv3cME5H .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sTtv3cME5H .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sTtv3cME5H button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTtv3cME5H button.navbar-toggler:focus {
  outline: none;
}
.cid-sTtv3cME5H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sTtv3cME5H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sTtv3cME5H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sTtv3cME5H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sTtv3cME5H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sTtv3cME5H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sTtv3cME5H nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sTtv3cME5H nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sTtv3cME5H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sTtv3cME5H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTtv3cME5H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTtv3cME5H .collapsed .btn {
  display: -webkit-flex;
}
.cid-sTtv3cME5H .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sTtv3cME5H .collapsed .navbar-collapse.collapsing,
.cid-sTtv3cME5H .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sTtv3cME5H .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sTtv3cME5H .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sTtv3cME5H .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sTtv3cME5H .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sTtv3cME5H .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sTtv3cME5H .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sTtv3cME5H .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sTtv3cME5H .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sTtv3cME5H .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-sTtv3cME5H .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sTtv3cME5H .collapsed button.navbar-toggler {
  display: block;
}
.cid-sTtv3cME5H .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sTtv3cME5H .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sTtv3cME5H .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sTtv3cME5H .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sTtv3cME5H .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sTtv3cME5H .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sTtv3cME5H .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sTtv3cME5H .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sTtv3cME5H .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sTtv3cME5H .nav-link:focus {
  outline: none;
}
.cid-sTtv3cME5H .navbar-toggler {
  position: relative;
}
.cid-sTtv3cME5H .dropdown-item.active,
.cid-sTtv3cME5H .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-sTtv3cME5H .nav-link:hover,
.cid-sTtv3cME5H .dropdown-item:hover {
  color: #74253d;
}
.cid-sTtv3cME5H .widget-title,
.cid-sTtv3cME5H .widget-icon {
  color: #ffffff;
}
.cid-sTtv3cME5H .widget-text {
  color: #f9f9f9;
}
.cid-tsWPXnZfJ7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-tsWPXnZfJ7 p {
  text-align: center;
}
.cid-tsWPXnZfJ7 .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsWPXnZfJ7 .btn-underline:hover {
  color: #505050;
}
.cid-tsWPXnZfJ7 .btn-underline:before {
  background-color: #505050;
}
.cid-tsWPXnZfJ7 .social-list a:focus {
  text-decoration: none;
}
.cid-tsWPXnZfJ7 .text-copyright {
  width: 100%;
}
.cid-tsWPXnZfJ7 .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-tsWPXnZfJ7 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsWPXnZfJ7 .logo-footer {
  line-height: normal;
}
.cid-tsWPXnZfJ7 .copyright {
  display: flex;
  align-items: center;
}
.cid-tsWPXnZfJ7 .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsWPXnZfJ7 .mbr-section-btn {
  font-size: 16px;
}
.cid-tsWPXnZfJ7 .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-sTtv3dyykI.popup-builder {
  background-color: #ffffff;
}
.cid-sTtv3dyykI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sTtv3dyykI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sTtv3dyykI .modal-content,
.cid-sTtv3dyykI .modal-dialog {
  height: auto;
}
.cid-sTtv3dyykI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sTtv3dyykI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sTtv3dyykI .form-wrapper .mbr-form .form-group,
  .cid-sTtv3dyykI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sTtv3dyykI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sTtv3dyykI .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTtv3dyykI .mbr-text {
  text-align: center;
}
.cid-sTtv3dyykI .pt-0 {
  padding-top: 0 !important;
}
.cid-sTtv3dyykI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sTtv3dyykI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sTtv3dyykI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sTtv3dyykI .modal-open {
  overflow: hidden;
}
.cid-sTtv3dyykI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sTtv3dyykI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sTtv3dyykI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sTtv3dyykI .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sTtv3dyykI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sTtv3dyykI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sTtv3dyykI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sTtv3dyykI .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sTtv3dyykI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sTtv3dyykI .modal-backdrop.fade {
  opacity: 0;
}
.cid-sTtv3dyykI .modal-backdrop.show {
  opacity: .5;
}
.cid-sTtv3dyykI .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sTtv3dyykI .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sTtv3dyykI .modal-header .close:hover {
  opacity: 1;
}
.cid-sTtv3dyykI .modal-header .close:focus {
  outline: none;
}
.cid-sTtv3dyykI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sTtv3dyykI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sTtv3dyykI .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sTtv3dyykI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sTtv3dyykI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sTtv3dyykI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sTtv3dyykI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sTtv3dyykI .modal-sm {
    max-width: 300px;
  }
  .cid-sTtv3dyykI .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sTtv3dyykI .modal-lg,
  .cid-sTtv3dyykI .modal-xl {
    max-width: 800px;
  }
  .cid-sTtv3dyykI .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sTtv3dyykI .modal-xl {
    max-width: 1140px;
  }
  .cid-sTtv3dyykI .container {
    max-width: 1140px;
  }
}
.cid-sTtv3dyykI .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sTtv3dyykI .container {
    max-width: 720px;
  }
}
.cid-sTtv3dyykI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sTtv3dyykI .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sTtv3dyykI .form-group {
  margin-bottom: 1rem;
}
.cid-sTtv3dyykI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sTtv3dyykI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sTtv3dyykI .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvCRSV.popup-builder {
  background-color: #ffffff;
}
.cid-tsQahvCRSV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsQahvCRSV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsQahvCRSV .modal-content,
.cid-tsQahvCRSV .modal-dialog {
  height: auto;
}
.cid-tsQahvCRSV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsQahvCRSV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsQahvCRSV .form-wrapper .mbr-form .form-group,
  .cid-tsQahvCRSV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsQahvCRSV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsQahvCRSV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsQahvCRSV .mbr-text {
  text-align: center;
}
.cid-tsQahvCRSV .pt-0 {
  padding-top: 0 !important;
}
.cid-tsQahvCRSV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsQahvCRSV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsQahvCRSV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsQahvCRSV .modal-open {
  overflow: hidden;
}
.cid-tsQahvCRSV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsQahvCRSV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsQahvCRSV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsQahvCRSV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tsQahvCRSV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsQahvCRSV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsQahvCRSV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsQahvCRSV .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tsQahvCRSV .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tsQahvCRSV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsQahvCRSV .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsQahvCRSV .modal-backdrop.show {
  opacity: .5;
}
.cid-tsQahvCRSV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tsQahvCRSV .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvCRSV .modal-header {
    padding: 1rem;
  }
}
.cid-tsQahvCRSV .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsQahvCRSV .modal-header .close svg {
  fill: #353535;
}
.cid-tsQahvCRSV .modal-header .close:hover {
  opacity: 1;
}
.cid-tsQahvCRSV .modal-header .close:focus {
  outline: none;
}
.cid-tsQahvCRSV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsQahvCRSV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tsQahvCRSV .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvCRSV .modal-body {
    padding: 1rem;
  }
}
.cid-tsQahvCRSV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tsQahvCRSV .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsQahvCRSV .modal-footer {
    padding: 1rem;
  }
}
.cid-tsQahvCRSV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsQahvCRSV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsQahvCRSV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsQahvCRSV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsQahvCRSV .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tsQahvCRSV .modal-lg,
  .cid-tsQahvCRSV .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tsQahvCRSV .modal-xl {
    max-width: 1140px;
  }
}
.cid-tsQahvCRSV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsQahvCRSV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tsQahvCRSV .form-group {
  margin-bottom: 1rem;
}
.cid-tsQahvCRSV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsQahvCRSV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsQahvCRSV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tsQahvCRSV .mbr-section-btn {
  margin: 0;
}
.cid-tsQahvCRSV .mbr-section-btn .btn {
  margin: 0;
}
.cid-u0TE04Hqbf {
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-u0TE04Hqbf .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-u0TE04Hqbf .mbr-overlay {
  background: linear-gradient(#000000 -10%, #000000 75%);
}
.cid-u0TE04Hqbf H1 {
  color: #ffffff;
}
.cid-u0TE05xg3o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE05xg3o .item-img {
  overflow: hidden;
}
.cid-u0TE05xg3o img,
.cid-u0TE05xg3o .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE05xg3o h5 {
  margin: 0;
}
.cid-u0TE05xg3o .item:focus,
.cid-u0TE05xg3o span:focus {
  outline: none;
}
.cid-u0TE05xg3o .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE05xg3o .item:hover img,
.cid-u0TE05xg3o .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE05xg3o .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE05xg3o .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE05xg3o .item-content {
  padding-top: 2rem;
}
.cid-u0TE05xg3o .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE05xg3o .item-title {
  color: #f9f9f9;
}
.cid-u0TE06e2gX {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE06e2gX .item-img {
  overflow: hidden;
}
.cid-u0TE06e2gX img,
.cid-u0TE06e2gX .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE06e2gX h5 {
  margin: 0;
}
.cid-u0TE06e2gX .item:focus,
.cid-u0TE06e2gX span:focus {
  outline: none;
}
.cid-u0TE06e2gX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE06e2gX .item:hover img,
.cid-u0TE06e2gX .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE06e2gX .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE06e2gX .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE06e2gX .item-content {
  padding-top: 2rem;
}
.cid-u0TE06e2gX .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE06e2gX .item-title {
  color: #f9f9f9;
}
.cid-u0TE06QbOD {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE06QbOD .item-img {
  overflow: hidden;
}
.cid-u0TE06QbOD img,
.cid-u0TE06QbOD .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE06QbOD h5 {
  margin: 0;
}
.cid-u0TE06QbOD .item:focus,
.cid-u0TE06QbOD span:focus {
  outline: none;
}
.cid-u0TE06QbOD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE06QbOD .item:hover img,
.cid-u0TE06QbOD .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE06QbOD .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE06QbOD .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE06QbOD .item-content {
  padding-top: 2rem;
}
.cid-u0TE06QbOD .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE06QbOD .item-title {
  color: #f9f9f9;
}
.cid-u0TE07xgIL {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE07xgIL .item-img {
  overflow: hidden;
}
.cid-u0TE07xgIL img,
.cid-u0TE07xgIL .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE07xgIL h5 {
  margin: 0;
}
.cid-u0TE07xgIL .item:focus,
.cid-u0TE07xgIL span:focus {
  outline: none;
}
.cid-u0TE07xgIL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE07xgIL .item:hover img,
.cid-u0TE07xgIL .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE07xgIL .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE07xgIL .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE07xgIL .item-content {
  padding-top: 2rem;
}
.cid-u0TE07xgIL .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE07xgIL .item-title {
  color: #f9f9f9;
}
.cid-u0TE08asuz {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE08asuz .item-img {
  overflow: hidden;
}
.cid-u0TE08asuz img,
.cid-u0TE08asuz .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE08asuz h5 {
  margin: 0;
}
.cid-u0TE08asuz .item:focus,
.cid-u0TE08asuz span:focus {
  outline: none;
}
.cid-u0TE08asuz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE08asuz .item:hover img,
.cid-u0TE08asuz .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE08asuz .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE08asuz .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE08asuz .item-content {
  padding-top: 2rem;
}
.cid-u0TE08asuz .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE08asuz .item-title {
  color: #f9f9f9;
}
.cid-u0TE08LjzH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE08LjzH .item-img {
  overflow: hidden;
}
.cid-u0TE08LjzH img,
.cid-u0TE08LjzH .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE08LjzH h5 {
  margin: 0;
}
.cid-u0TE08LjzH .item:focus,
.cid-u0TE08LjzH span:focus {
  outline: none;
}
.cid-u0TE08LjzH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE08LjzH .item:hover img,
.cid-u0TE08LjzH .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE08LjzH .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE08LjzH .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE08LjzH .item-content {
  padding-top: 2rem;
}
.cid-u0TE08LjzH .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE08LjzH .item-title {
  color: #f9f9f9;
}
.cid-u0TE09tL8i {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE09tL8i .item-img {
  overflow: hidden;
}
.cid-u0TE09tL8i img,
.cid-u0TE09tL8i .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE09tL8i h5 {
  margin: 0;
}
.cid-u0TE09tL8i .item:focus,
.cid-u0TE09tL8i span:focus {
  outline: none;
}
.cid-u0TE09tL8i .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE09tL8i .item:hover img,
.cid-u0TE09tL8i .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE09tL8i .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE09tL8i .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE09tL8i .item-content {
  padding-top: 2rem;
}
.cid-u0TE09tL8i .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE09tL8i .item-title {
  color: #f9f9f9;
}
.cid-u0TE0a5yka {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE0a5yka .item-img {
  overflow: hidden;
}
.cid-u0TE0a5yka img,
.cid-u0TE0a5yka .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0a5yka h5 {
  margin: 0;
}
.cid-u0TE0a5yka .item:focus,
.cid-u0TE0a5yka span:focus {
  outline: none;
}
.cid-u0TE0a5yka .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0a5yka .item:hover img,
.cid-u0TE0a5yka .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0a5yka .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0a5yka .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0a5yka .item-content {
  padding-top: 2rem;
}
.cid-u0TE0a5yka .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE0a5yka .item-title {
  color: #f9f9f9;
}
.cid-u0TE0aNbY5 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE0aNbY5 .item-img {
  overflow: hidden;
}
.cid-u0TE0aNbY5 img,
.cid-u0TE0aNbY5 .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0aNbY5 h5 {
  margin: 0;
}
.cid-u0TE0aNbY5 .item:focus,
.cid-u0TE0aNbY5 span:focus {
  outline: none;
}
.cid-u0TE0aNbY5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0aNbY5 .item:hover img,
.cid-u0TE0aNbY5 .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0aNbY5 .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0aNbY5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0aNbY5 .item-content {
  padding-top: 2rem;
}
.cid-u0TE0aNbY5 .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE0aNbY5 .item-title {
  color: #f9f9f9;
}
.cid-u0TE0bqHUr {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE0bqHUr .item-img {
  overflow: hidden;
}
.cid-u0TE0bqHUr img,
.cid-u0TE0bqHUr .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0bqHUr h5 {
  margin: 0;
}
.cid-u0TE0bqHUr .item:focus,
.cid-u0TE0bqHUr span:focus {
  outline: none;
}
.cid-u0TE0bqHUr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0bqHUr .item:hover img,
.cid-u0TE0bqHUr .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0bqHUr .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0bqHUr .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0bqHUr .item-content {
  padding-top: 2rem;
}
.cid-u0TE0bqHUr .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE0bqHUr .item-title {
  color: #f9f9f9;
}
.cid-u0TE0cePBW {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE0cePBW .item-img {
  overflow: hidden;
}
.cid-u0TE0cePBW img,
.cid-u0TE0cePBW .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0cePBW h5 {
  margin: 0;
}
.cid-u0TE0cePBW .item:focus,
.cid-u0TE0cePBW span:focus {
  outline: none;
}
.cid-u0TE0cePBW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0cePBW .item:hover img,
.cid-u0TE0cePBW .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0cePBW .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0cePBW .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0cePBW .item-content {
  padding-top: 2rem;
}
.cid-u0TE0cePBW .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE0cePBW .item-title {
  color: #f9f9f9;
}
.cid-u0TE0d08CH {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE0d08CH .item-img {
  overflow: hidden;
}
.cid-u0TE0d08CH img,
.cid-u0TE0d08CH .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0d08CH h5 {
  margin: 0;
}
.cid-u0TE0d08CH .item:focus,
.cid-u0TE0d08CH span:focus {
  outline: none;
}
.cid-u0TE0d08CH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0d08CH .item:hover img,
.cid-u0TE0d08CH .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0d08CH .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0d08CH .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0d08CH .item-content {
  padding-top: 2rem;
}
.cid-u0TE0d08CH .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE0d08CH .item-title {
  color: #f9f9f9;
}
.cid-u0TE0dPxOM {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE0dPxOM .item-img {
  overflow: hidden;
}
.cid-u0TE0dPxOM img,
.cid-u0TE0dPxOM .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0dPxOM h5 {
  margin: 0;
}
.cid-u0TE0dPxOM .item:focus,
.cid-u0TE0dPxOM span:focus {
  outline: none;
}
.cid-u0TE0dPxOM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0dPxOM .item:hover img,
.cid-u0TE0dPxOM .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0dPxOM .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0dPxOM .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0dPxOM .item-content {
  padding-top: 2rem;
}
.cid-u0TE0dPxOM .mbr-section-title {
  color: #f9f9f9;
  text-align: center;
}
.cid-u0TE0dPxOM .item-title {
  color: #f9f9f9;
}
.cid-u0TE0fti3g {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0TE0fti3g .item-img {
  overflow: hidden;
}
.cid-u0TE0fti3g img,
.cid-u0TE0fti3g .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0fti3g h5 {
  margin: 0;
}
.cid-u0TE0fti3g .item:focus,
.cid-u0TE0fti3g span:focus {
  outline: none;
}
.cid-u0TE0fti3g .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0fti3g .item:hover img,
.cid-u0TE0fti3g .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0fti3g .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0fti3g .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0fti3g .item-content {
  padding-top: 2rem;
}
.cid-u0TE0fti3g .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0fti3g .item-title {
  color: #f9f9f9;
}
.cid-u0TE0hIuk7 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0TE0hIuk7 .item-img {
  overflow: hidden;
}
.cid-u0TE0hIuk7 img,
.cid-u0TE0hIuk7 .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0hIuk7 h5 {
  margin: 0;
}
.cid-u0TE0hIuk7 .item:focus,
.cid-u0TE0hIuk7 span:focus {
  outline: none;
}
.cid-u0TE0hIuk7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0hIuk7 .item:hover img,
.cid-u0TE0hIuk7 .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0hIuk7 .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0hIuk7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0hIuk7 .item-content {
  padding-top: 2rem;
}
.cid-u0TE0hIuk7 .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0hIuk7 .item-title {
  color: #74253d;
}
.cid-u0TE0jyk7y {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0TE0jyk7y .item-img {
  overflow: hidden;
}
.cid-u0TE0jyk7y img,
.cid-u0TE0jyk7y .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0jyk7y h5 {
  margin: 0;
}
.cid-u0TE0jyk7y .item:focus,
.cid-u0TE0jyk7y span:focus {
  outline: none;
}
.cid-u0TE0jyk7y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0jyk7y .item:hover img,
.cid-u0TE0jyk7y .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0jyk7y .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0jyk7y .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0jyk7y .item-content {
  padding-top: 2rem;
}
.cid-u0TE0jyk7y .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0jyk7y .item-title {
  color: #74253d;
}
.cid-u0TE0koXMa {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0TE0koXMa .item-img {
  overflow: hidden;
}
.cid-u0TE0koXMa img,
.cid-u0TE0koXMa .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0koXMa h5 {
  margin: 0;
}
.cid-u0TE0koXMa .item:focus,
.cid-u0TE0koXMa span:focus {
  outline: none;
}
.cid-u0TE0koXMa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0koXMa .item:hover img,
.cid-u0TE0koXMa .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0koXMa .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0koXMa .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0koXMa .item-content {
  padding-top: 2rem;
}
.cid-u0TE0koXMa .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0koXMa .item-title {
  color: #74253d;
}
.cid-u0TE0m3QRS {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0TE0m3QRS .item-img {
  overflow: hidden;
}
.cid-u0TE0m3QRS img,
.cid-u0TE0m3QRS .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0m3QRS h5 {
  margin: 0;
}
.cid-u0TE0m3QRS .item:focus,
.cid-u0TE0m3QRS span:focus {
  outline: none;
}
.cid-u0TE0m3QRS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0m3QRS .item:hover img,
.cid-u0TE0m3QRS .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0m3QRS .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0m3QRS .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0m3QRS .item-content {
  padding-top: 2rem;
}
.cid-u0TE0m3QRS .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0m3QRS .item-title {
  color: #74253d;
}
.cid-u0TE0n5lGM {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0TE0n5lGM .item-img {
  overflow: hidden;
}
.cid-u0TE0n5lGM img,
.cid-u0TE0n5lGM .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0n5lGM h5 {
  margin: 0;
}
.cid-u0TE0n5lGM .item:focus,
.cid-u0TE0n5lGM span:focus {
  outline: none;
}
.cid-u0TE0n5lGM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0n5lGM .item:hover img,
.cid-u0TE0n5lGM .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0n5lGM .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0n5lGM .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0n5lGM .item-content {
  padding-top: 2rem;
}
.cid-u0TE0n5lGM .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0n5lGM .item-title {
  color: #74253d;
}
.cid-u0TE0nTUfc {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0TE0nTUfc .item-img {
  overflow: hidden;
}
.cid-u0TE0nTUfc img,
.cid-u0TE0nTUfc .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0nTUfc h5 {
  margin: 0;
}
.cid-u0TE0nTUfc .item:focus,
.cid-u0TE0nTUfc span:focus {
  outline: none;
}
.cid-u0TE0nTUfc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0nTUfc .item:hover img,
.cid-u0TE0nTUfc .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0nTUfc .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0nTUfc .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0nTUfc .item-content {
  padding-top: 2rem;
}
.cid-u0TE0nTUfc .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0nTUfc .item-title {
  color: #74253d;
}
.cid-u0TE0oK7Mh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0TE0oK7Mh .item-img {
  overflow: hidden;
}
.cid-u0TE0oK7Mh img,
.cid-u0TE0oK7Mh .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0oK7Mh h5 {
  margin: 0;
}
.cid-u0TE0oK7Mh .item:focus,
.cid-u0TE0oK7Mh span:focus {
  outline: none;
}
.cid-u0TE0oK7Mh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0oK7Mh .item:hover img,
.cid-u0TE0oK7Mh .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0oK7Mh .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0oK7Mh .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0oK7Mh .item-content {
  padding-top: 2rem;
}
.cid-u0TE0oK7Mh .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0oK7Mh .item-title {
  color: #74253d;
}
.cid-u0TE0pBBb0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0TE0pBBb0 .item-img {
  overflow: hidden;
}
.cid-u0TE0pBBb0 img,
.cid-u0TE0pBBb0 .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0pBBb0 h5 {
  margin: 0;
}
.cid-u0TE0pBBb0 .item:focus,
.cid-u0TE0pBBb0 span:focus {
  outline: none;
}
.cid-u0TE0pBBb0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0pBBb0 .item:hover img,
.cid-u0TE0pBBb0 .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0pBBb0 .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0pBBb0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0pBBb0 .item-content {
  padding-top: 2rem;
}
.cid-u0TE0pBBb0 .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0pBBb0 .item-title {
  color: #74253d;
}
.cid-u0TE0qwdGt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0TE0qwdGt .item-img {
  overflow: hidden;
}
.cid-u0TE0qwdGt img,
.cid-u0TE0qwdGt .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0qwdGt h5 {
  margin: 0;
}
.cid-u0TE0qwdGt .item:focus,
.cid-u0TE0qwdGt span:focus {
  outline: none;
}
.cid-u0TE0qwdGt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0qwdGt .item:hover img,
.cid-u0TE0qwdGt .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0qwdGt .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0qwdGt .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0qwdGt .item-content {
  padding-top: 2rem;
}
.cid-u0TE0qwdGt .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0qwdGt .item-title {
  color: #74253d;
}
.cid-u0TE0rFMcQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0TE0rFMcQ .item-img {
  overflow: hidden;
}
.cid-u0TE0rFMcQ img,
.cid-u0TE0rFMcQ .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0rFMcQ h5 {
  margin: 0;
}
.cid-u0TE0rFMcQ .item:focus,
.cid-u0TE0rFMcQ span:focus {
  outline: none;
}
.cid-u0TE0rFMcQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0rFMcQ .item:hover img,
.cid-u0TE0rFMcQ .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0rFMcQ .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0rFMcQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0rFMcQ .item-content {
  padding-top: 2rem;
}
.cid-u0TE0rFMcQ .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0rFMcQ .item-title {
  color: #74253d;
}
.cid-u0TE0sAd9J {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u0TE0sAd9J .item-img {
  overflow: hidden;
}
.cid-u0TE0sAd9J img,
.cid-u0TE0sAd9J .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-u0TE0sAd9J h5 {
  margin: 0;
}
.cid-u0TE0sAd9J .item:focus,
.cid-u0TE0sAd9J span:focus {
  outline: none;
}
.cid-u0TE0sAd9J .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0TE0sAd9J .item:hover img,
.cid-u0TE0sAd9J .item:hover .item-img {
  filter: grayscale(0);
}
.cid-u0TE0sAd9J .item:hover img {
  transform: scale(1.05);
}
.cid-u0TE0sAd9J .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u0TE0sAd9J .item-content {
  padding-top: 2rem;
}
.cid-u0TE0sAd9J .mbr-section-title {
  color: #74253d;
  text-align: center;
}
.cid-u0TE0sAd9J .item-title {
  color: #74253d;
}
.cid-u0TE0tubqp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-u0TE0tubqp .block-title B {
  color: #feffe3;
}
.cid-u0TE0u6RsG .navbar {
  padding: .5rem 0;
  background: #000000;
  transition: none;
  min-height: 50px;
}
.cid-u0TE0u6RsG .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-u0TE0u6RsG a {
  font-style: normal;
}
.cid-u0TE0u6RsG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-u0TE0u6RsG .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-u0TE0u6RsG .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u0TE0u6RsG .content-text {
  margin-bottom: 0;
}
.cid-u0TE0u6RsG .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-u0TE0u6RsG .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #74253d;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-u0TE0u6RsG .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-u0TE0u6RsG .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-u0TE0u6RsG .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-u0TE0u6RsG .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-u0TE0u6RsG .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-u0TE0u6RsG .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-u0TE0u6RsG .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0TE0u6RsG .nav-dropdown .link {
  font-weight: 400;
}
.cid-u0TE0u6RsG .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-u0TE0u6RsG .content-right-side {
  text-align: center;
}
.cid-u0TE0u6RsG .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-u0TE0u6RsG .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-u0TE0u6RsG .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-u0TE0u6RsG .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-u0TE0u6RsG .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-u0TE0u6RsG .menu-bottom {
    justify-content: flex-end;
  }
  .cid-u0TE0u6RsG img {
    height: 3.8rem !important;
  }
  .cid-u0TE0u6RsG .btn {
    display: -webkit-flex;
  }
  .cid-u0TE0u6RsG button.navbar-toggler {
    display: block;
  }
  .cid-u0TE0u6RsG .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-u0TE0u6RsG .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-u0TE0u6RsG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-u0TE0u6RsG .navbar-collapse.collapsing,
  .cid-u0TE0u6RsG .navbar-collapse.show {
    display: block !important;
  }
  .cid-u0TE0u6RsG .navbar-collapse.collapsing .navbar-nav,
  .cid-u0TE0u6RsG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-u0TE0u6RsG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-u0TE0u6RsG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-u0TE0u6RsG .navbar-collapse.collapsing .navbar-buttons,
  .cid-u0TE0u6RsG .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u0TE0u6RsG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-u0TE0u6RsG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-u0TE0u6RsG .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-u0TE0u6RsG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-u0TE0u6RsG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-u0TE0u6RsG .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-u0TE0u6RsG .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-u0TE0u6RsG .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-u0TE0u6RsG .navbar.opened {
    padding-bottom: 4rem;
  }
  .cid-u0TE0u6RsG .navbar .navbar-collapse {
    max-height: calc(100vh - 4rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-u0TE0u6RsG .navbar.opened {
    padding-bottom: 5rem;
  }
  .cid-u0TE0u6RsG .navbar .navbar-collapse {
    max-height: calc(100vh - 5rem - 80px);
  }
}
.cid-u0TE0u6RsG .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-u0TE0u6RsG .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-u0TE0u6RsG .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-u0TE0u6RsG .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.cid-u0TE0u6RsG .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0TE0u6RsG .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-u0TE0u6RsG .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-u0TE0u6RsG .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-u0TE0u6RsG .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-u0TE0u6RsG .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-u0TE0u6RsG .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-u0TE0u6RsG .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-u0TE0u6RsG .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u0TE0u6RsG .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-u0TE0u6RsG .navbar {
    display: block;
    padding: 0;
  }
  .cid-u0TE0u6RsG .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u0TE0u6RsG .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-u0TE0u6RsG .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-u0TE0u6RsG .navbar-toggler {
    display: none;
  }
  .cid-u0TE0u6RsG .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u0TE0u6RsG .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0TE0u6RsG .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-u0TE0u6RsG .menu-logo {
  margin-right: auto;
}
.cid-u0TE0u6RsG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u0TE0u6RsG .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-u0TE0u6RsG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-u0TE0u6RsG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-u0TE0u6RsG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-u0TE0u6RsG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-u0TE0u6RsG .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-u0TE0u6RsG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-u0TE0u6RsG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-u0TE0u6RsG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-u0TE0u6RsG .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u0TE0u6RsG .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-u0TE0u6RsG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u0TE0u6RsG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0TE0u6RsG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u0TE0u6RsG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u0TE0u6RsG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u0TE0u6RsG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-u0TE0u6RsG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0TE0u6RsG .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-u0TE0u6RsG .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-u0TE0u6RsG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-u0TE0u6RsG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-u0TE0u6RsG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-u0TE0u6RsG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-u0TE0u6RsG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u0TE0u6RsG button.navbar-toggler:focus {
  outline: none;
}
.cid-u0TE0u6RsG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-u0TE0u6RsG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u0TE0u6RsG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u0TE0u6RsG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u0TE0u6RsG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u0TE0u6RsG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u0TE0u6RsG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u0TE0u6RsG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u0TE0u6RsG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u0TE0u6RsG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0TE0u6RsG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0TE0u6RsG .collapsed .btn {
  display: -webkit-flex;
}
.cid-u0TE0u6RsG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-u0TE0u6RsG .collapsed .navbar-collapse.collapsing,
.cid-u0TE0u6RsG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-u0TE0u6RsG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-u0TE0u6RsG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-u0TE0u6RsG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-u0TE0u6RsG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-u0TE0u6RsG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-u0TE0u6RsG .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-u0TE0u6RsG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-u0TE0u6RsG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-u0TE0u6RsG .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5rem);
  }
  .cid-u0TE0u6RsG .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-u0TE0u6RsG .collapsed button.navbar-toggler {
  display: block;
}
.cid-u0TE0u6RsG .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-u0TE0u6RsG .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-u0TE0u6RsG .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-u0TE0u6RsG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-u0TE0u6RsG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-u0TE0u6RsG .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-u0TE0u6RsG .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0TE0u6RsG .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-u0TE0u6RsG .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-u0TE0u6RsG .nav-link:focus {
  outline: none;
}
.cid-u0TE0u6RsG .navbar-toggler {
  position: relative;
}
.cid-u0TE0u6RsG .dropdown-item.active,
.cid-u0TE0u6RsG .dropdown-item:active {
  background: #000000;
  color: initial;
}
.cid-u0TE0u6RsG .nav-link:hover,
.cid-u0TE0u6RsG .dropdown-item:hover {
  color: #74253d;
}
.cid-u0TE0u6RsG .widget-title,
.cid-u0TE0u6RsG .widget-icon {
  color: #ffffff;
}
.cid-u0TE0u6RsG .widget-text {
  color: #f9f9f9;
}
.cid-u0TE0v1CGQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background-1-2000x1823.jpg");
}
.cid-u0TE0v1CGQ p {
  text-align: center;
}
.cid-u0TE0v1CGQ .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u0TE0v1CGQ .btn-underline:hover {
  color: #505050;
}
.cid-u0TE0v1CGQ .btn-underline:before {
  background-color: #505050;
}
.cid-u0TE0v1CGQ .social-list a:focus {
  text-decoration: none;
}
.cid-u0TE0v1CGQ .text-copyright {
  width: 100%;
}
.cid-u0TE0v1CGQ .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-u0TE0v1CGQ .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-u0TE0v1CGQ .logo-footer {
  line-height: normal;
}
.cid-u0TE0v1CGQ .copyright {
  display: flex;
  align-items: center;
}
.cid-u0TE0v1CGQ .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0TE0v1CGQ .mbr-section-btn {
  font-size: 16px;
}
.cid-u0TE0v1CGQ .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-u0TE0vQQFq.popup-builder {
  background-color: #ffffff;
}
.cid-u0TE0vQQFq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u0TE0vQQFq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u0TE0vQQFq .modal-content,
.cid-u0TE0vQQFq .modal-dialog {
  height: auto;
}
.cid-u0TE0vQQFq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u0TE0vQQFq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u0TE0vQQFq .form-wrapper .mbr-form .form-group,
  .cid-u0TE0vQQFq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u0TE0vQQFq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u0TE0vQQFq .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u0TE0vQQFq .mbr-text {
  text-align: center;
}
.cid-u0TE0vQQFq .pt-0 {
  padding-top: 0 !important;
}
.cid-u0TE0vQQFq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u0TE0vQQFq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u0TE0vQQFq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u0TE0vQQFq .modal-open {
  overflow: hidden;
}
.cid-u0TE0vQQFq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u0TE0vQQFq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u0TE0vQQFq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u0TE0vQQFq .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-u0TE0vQQFq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u0TE0vQQFq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u0TE0vQQFq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u0TE0vQQFq .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-u0TE0vQQFq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u0TE0vQQFq .modal-backdrop.fade {
  opacity: 0;
}
.cid-u0TE0vQQFq .modal-backdrop.show {
  opacity: .5;
}
.cid-u0TE0vQQFq .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-u0TE0vQQFq .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u0TE0vQQFq .modal-header .close:hover {
  opacity: 1;
}
.cid-u0TE0vQQFq .modal-header .close:focus {
  outline: none;
}
.cid-u0TE0vQQFq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u0TE0vQQFq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-u0TE0vQQFq .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-u0TE0vQQFq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u0TE0vQQFq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u0TE0vQQFq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u0TE0vQQFq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u0TE0vQQFq .modal-sm {
    max-width: 300px;
  }
  .cid-u0TE0vQQFq .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-u0TE0vQQFq .modal-lg,
  .cid-u0TE0vQQFq .modal-xl {
    max-width: 800px;
  }
  .cid-u0TE0vQQFq .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-u0TE0vQQFq .modal-xl {
    max-width: 1140px;
  }
  .cid-u0TE0vQQFq .container {
    max-width: 1140px;
  }
}
.cid-u0TE0vQQFq .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-u0TE0vQQFq .container {
    max-width: 720px;
  }
}
.cid-u0TE0vQQFq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u0TE0vQQFq .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-u0TE0vQQFq .form-group {
  margin-bottom: 1rem;
}
.cid-u0TE0vQQFq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u0TE0vQQFq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u0TE0vQQFq .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-u0TE0wR7R2.popup-builder {
  background-color: #ffffff;
}
.cid-u0TE0wR7R2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u0TE0wR7R2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u0TE0wR7R2 .modal-content,
.cid-u0TE0wR7R2 .modal-dialog {
  height: auto;
}
.cid-u0TE0wR7R2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u0TE0wR7R2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u0TE0wR7R2 .form-wrapper .mbr-form .form-group,
  .cid-u0TE0wR7R2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u0TE0wR7R2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u0TE0wR7R2 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u0TE0wR7R2 .mbr-text {
  text-align: center;
}
.cid-u0TE0wR7R2 .pt-0 {
  padding-top: 0 !important;
}
.cid-u0TE0wR7R2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u0TE0wR7R2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u0TE0wR7R2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u0TE0wR7R2 .modal-open {
  overflow: hidden;
}
.cid-u0TE0wR7R2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u0TE0wR7R2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u0TE0wR7R2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u0TE0wR7R2 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-u0TE0wR7R2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u0TE0wR7R2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u0TE0wR7R2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u0TE0wR7R2 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-u0TE0wR7R2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u0TE0wR7R2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u0TE0wR7R2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-u0TE0wR7R2 .modal-backdrop.show {
  opacity: .5;
}
.cid-u0TE0wR7R2 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-u0TE0wR7R2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u0TE0wR7R2 .modal-header {
    padding: 1rem;
  }
}
.cid-u0TE0wR7R2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u0TE0wR7R2 .modal-header .close svg {
  fill: #353535;
}
.cid-u0TE0wR7R2 .modal-header .close:hover {
  opacity: 1;
}
.cid-u0TE0wR7R2 .modal-header .close:focus {
  outline: none;
}
.cid-u0TE0wR7R2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u0TE0wR7R2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u0TE0wR7R2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0TE0wR7R2 .modal-body {
    padding: 1rem;
  }
}
.cid-u0TE0wR7R2 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u0TE0wR7R2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0TE0wR7R2 .modal-footer {
    padding: 1rem;
  }
}
.cid-u0TE0wR7R2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u0TE0wR7R2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u0TE0wR7R2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u0TE0wR7R2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u0TE0wR7R2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u0TE0wR7R2 .modal-lg,
  .cid-u0TE0wR7R2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u0TE0wR7R2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-u0TE0wR7R2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u0TE0wR7R2 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-u0TE0wR7R2 .form-group {
  margin-bottom: 1rem;
}
.cid-u0TE0wR7R2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u0TE0wR7R2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u0TE0wR7R2 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-u0TE0wR7R2 .mbr-section-btn {
  margin: 0;
}
.cid-u0TE0wR7R2 .mbr-section-btn .btn {
  margin: 0;
}
