body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f60d55 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f60d55 !important;
  border-color: #f60d55 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a60638 !important;
  border-color: #a60638 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a60638 !important;
  border-color: #a60638 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f60d55;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a60638 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f60d55 !important;
  border-color: #f60d55 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f60d55 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #970633 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f60d55;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f60d55;
  border-color: #f60d55;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f60d55;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdd2df;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f60d55 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #f60d55;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f60d55;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f60d55;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f60d55;
  border-bottom-color: #f60d55;
}
.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: #f60d55 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f60d55' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sHWcw1ggkh .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-sHWcw1ggkh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sHWcw1ggkh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHWcw1ggkh .nav-link {
  position: relative;
}
.cid-sHWcw1ggkh .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sHWcw1ggkh .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sHWcw1ggkh .container {
  display: flex;
  margin: auto;
}
.cid-sHWcw1ggkh .navbar.navbar-short .nav-link,
.cid-sHWcw1ggkh .navbar.navbar-short .navbar-caption,
.cid-sHWcw1ggkh .navbar.navbar-short .mbr-iconfont,
.cid-sHWcw1ggkh .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sHWcw1ggkh .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sHWcw1ggkh .navbar-caption {
  padding-right: 3rem;
}
.cid-sHWcw1ggkh .dropdown-menu,
.cid-sHWcw1ggkh .navbar.opened {
  background: #000000 !important;
}
.cid-sHWcw1ggkh .nav-item:focus,
.cid-sHWcw1ggkh .nav-link:focus {
  outline: none;
}
.cid-sHWcw1ggkh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sHWcw1ggkh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHWcw1ggkh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sHWcw1ggkh .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-sHWcw1ggkh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHWcw1ggkh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHWcw1ggkh .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sHWcw1ggkh .navbar.opened {
  transition: all .3s;
}
.cid-sHWcw1ggkh .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sHWcw1ggkh .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sHWcw1ggkh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHWcw1ggkh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sHWcw1ggkh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHWcw1ggkh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHWcw1ggkh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sHWcw1ggkh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHWcw1ggkh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sHWcw1ggkh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sHWcw1ggkh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHWcw1ggkh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHWcw1ggkh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHWcw1ggkh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHWcw1ggkh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sHWcw1ggkh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sHWcw1ggkh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHWcw1ggkh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHWcw1ggkh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHWcw1ggkh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sHWcw1ggkh .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sHWcw1ggkh .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sHWcw1ggkh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sHWcw1ggkh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sHWcw1ggkh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sHWcw1ggkh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHWcw1ggkh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHWcw1ggkh .dropdown-item.active,
.cid-sHWcw1ggkh .dropdown-item:active {
  background-color: transparent;
}
.cid-sHWcw1ggkh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHWcw1ggkh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHWcw1ggkh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHWcw1ggkh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sHWcw1ggkh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHWcw1ggkh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHWcw1ggkh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sHWcw1ggkh .navbar-buttons {
  text-align: center;
}
.cid-sHWcw1ggkh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sHWcw1ggkh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sHWcw1ggkh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sHWcw1ggkh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sHWcw1ggkh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sHWcw1ggkh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sHWcw1ggkh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sHWcw1ggkh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sHWcw1ggkh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sHWcw1ggkh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sHWcw1ggkh .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sHWcw1ggkh a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sHWcw1ggkh .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sHWcw1ggkh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sHWcw1ggkh .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sHWcw1ggkh .navbar {
    height: 77px;
  }
  .cid-sHWcw1ggkh .navbar.opened {
    height: auto;
  }
  .cid-sHWcw1ggkh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-sJfrjelbZE .row {
    flex-direction: column-reverse;
  }
  .cid-sJfrjelbZE .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sJfrjelbZE .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sJfrjelbZE .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sJfrjelbZE .media-content,
.cid-sJfrjelbZE .mbr-figure {
  align-self: center;
}
.cid-sJfrjelbZE .mbr-figure iframe {
  width: 100%;
}
.cid-sJfrjelbZE .mbr-section-title {
  color: #ffffff;
}
.cid-sJfrjelbZE .mbr-text,
.cid-sJfrjelbZE .mbr-section-btn {
  color: #ffffff;
}
.cid-sIjdqZu0FF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-sIjdqZu0FF [class^="socicon-"]:before,
.cid-sIjdqZu0FF [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-sIjdqZu0FF .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-sIjdqZu0FF .btn-social,
.cid-sIjdqZu0FF .mbr-section-title {
  color: #57468b;
}
.cid-sIjdqZu0FF .soc-item {
  width: 45px;
  height: 45px;
  background: #232323;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-sIjdqZu0FF .soc-item span {
  font-size: 1.4rem;
  color: #f60d55 !important;
  transition: all 0.3s;
}
.cid-sIjdqZu0FF .soc-item:hover span {
  color: #f60d55 !important;
}
.cid-sOOYS7gcUW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-sOOYS7gcUW .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sOOYS7gcUW .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOOYS7gcUW .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sOOYS7gcUW .card-title {
  color: #f60d55;
}
.cid-sOOYS7gcUW .card-text {
  color: #ffffff;
}
.cid-sHWd1ctxkA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-sHWd1ctxkA .item:focus,
.cid-sHWd1ctxkA span:focus {
  outline: none;
}
.cid-sHWd1ctxkA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sHWd1ctxkA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sHWd1ctxkA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sHWd1ctxkA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sHWd1ctxkA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sHWd1ctxkA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sHWd1ctxkA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sHWd1ctxkA .mbr-section-title {
  color: #ffffff;
}
.cid-sHWd1ctxkA .mbr-text,
.cid-sHWd1ctxkA .mbr-section-btn {
  text-align: left;
}
.cid-sHWd1ctxkA .item-title {
  text-align: left;
}
.cid-sHWd1ctxkA .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sHWd1ctxkA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sHWheMUl97 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sHWheMUl97 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sHWheMUl97 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sHWheMUl97 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sHWheMUl97 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sHWheMUl97 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sHWheMUl97 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sHWheMUl97 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sHWheMUl97 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sHWheMUl97 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sHWheMUl97 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sHWheMUl97 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sHWheMUl97 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sHWheMUl97 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sHWheMUl97 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sJg0cXKOLi.popup-builder {
  background-color: #ffffff;
}
.cid-sJg0cXKOLi.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sJg0cXKOLi.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sJg0cXKOLi .modal-content,
.cid-sJg0cXKOLi .modal-dialog {
  height: auto;
}
.cid-sJg0cXKOLi .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sJg0cXKOLi .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sJg0cXKOLi .form-wrapper .mbr-form .form-group,
  .cid-sJg0cXKOLi .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sJg0cXKOLi .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sJg0cXKOLi .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-sJg0cXKOLi .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sJg0cXKOLi .pt-0 {
  padding-top: 0 !important;
}
.cid-sJg0cXKOLi .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sJg0cXKOLi .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sJg0cXKOLi .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sJg0cXKOLi .modal-open {
  overflow: hidden;
}
.cid-sJg0cXKOLi .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sJg0cXKOLi .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sJg0cXKOLi .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sJg0cXKOLi .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-sJg0cXKOLi .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sJg0cXKOLi .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sJg0cXKOLi .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sJg0cXKOLi .modal-content {
  background: #f60d55;
  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-sJg0cXKOLi .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sJg0cXKOLi .modal-backdrop.fade {
  opacity: 0;
}
.cid-sJg0cXKOLi .modal-backdrop.show {
  opacity: .5;
}
.cid-sJg0cXKOLi .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-sJg0cXKOLi .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sJg0cXKOLi .modal-header {
    padding: 1rem;
  }
}
.cid-sJg0cXKOLi .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sJg0cXKOLi .modal-header .close:hover {
  opacity: 1;
}
.cid-sJg0cXKOLi .modal-header .close:focus {
  outline: none;
}
.cid-sJg0cXKOLi .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-sJg0cXKOLi .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sJg0cXKOLi .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sJg0cXKOLi .modal-body {
    padding: 1rem;
  }
}
.cid-sJg0cXKOLi .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-sJg0cXKOLi .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sJg0cXKOLi .modal-footer {
    padding: 1rem;
  }
}
.cid-sJg0cXKOLi .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sJg0cXKOLi .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sJg0cXKOLi .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sJg0cXKOLi .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sJg0cXKOLi .modal-sm {
    max-width: 300px;
  }
  .cid-sJg0cXKOLi .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sJg0cXKOLi .modal-lg,
  .cid-sJg0cXKOLi .modal-xl {
    max-width: 800px;
  }
  .cid-sJg0cXKOLi .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sJg0cXKOLi .modal-xl {
    max-width: 1140px;
  }
  .cid-sJg0cXKOLi .container {
    max-width: 1140px;
  }
}
.cid-sJg0cXKOLi .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sJg0cXKOLi .container {
    max-width: 720px;
  }
}
.cid-sJg0cXKOLi .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sJg0cXKOLi .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-sJg0cXKOLi .form-group {
  margin-bottom: 1rem;
}
.cid-sJg0cXKOLi .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sJg0cXKOLi .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sJg0cXKOLi .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-sJg0cXKOLi .mbr-section-btn {
  margin: 0;
}
.cid-sJg0cXKOLi .mbr-section-btn .btn {
  margin: 0;
}
.cid-sIjeMeyAls .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-sIjeMeyAls .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sIjeMeyAls .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sIjeMeyAls .nav-link {
  position: relative;
}
.cid-sIjeMeyAls .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sIjeMeyAls .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sIjeMeyAls .container {
  display: flex;
  margin: auto;
}
.cid-sIjeMeyAls .navbar.navbar-short .nav-link,
.cid-sIjeMeyAls .navbar.navbar-short .navbar-caption,
.cid-sIjeMeyAls .navbar.navbar-short .mbr-iconfont,
.cid-sIjeMeyAls .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sIjeMeyAls .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sIjeMeyAls .navbar-caption {
  padding-right: 3rem;
}
.cid-sIjeMeyAls .dropdown-menu,
.cid-sIjeMeyAls .navbar.opened {
  background: #000000 !important;
}
.cid-sIjeMeyAls .nav-item:focus,
.cid-sIjeMeyAls .nav-link:focus {
  outline: none;
}
.cid-sIjeMeyAls .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sIjeMeyAls .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sIjeMeyAls .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sIjeMeyAls .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-sIjeMeyAls .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sIjeMeyAls .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sIjeMeyAls .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sIjeMeyAls .navbar.opened {
  transition: all .3s;
}
.cid-sIjeMeyAls .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sIjeMeyAls .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sIjeMeyAls .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sIjeMeyAls .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sIjeMeyAls .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sIjeMeyAls .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sIjeMeyAls .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sIjeMeyAls .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sIjeMeyAls .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sIjeMeyAls .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sIjeMeyAls .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sIjeMeyAls .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sIjeMeyAls .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sIjeMeyAls .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sIjeMeyAls .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sIjeMeyAls .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sIjeMeyAls .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sIjeMeyAls .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sIjeMeyAls .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sIjeMeyAls .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sIjeMeyAls .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sIjeMeyAls .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sIjeMeyAls .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sIjeMeyAls .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sIjeMeyAls .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sIjeMeyAls .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sIjeMeyAls .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sIjeMeyAls .dropdown-item.active,
.cid-sIjeMeyAls .dropdown-item:active {
  background-color: transparent;
}
.cid-sIjeMeyAls .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sIjeMeyAls .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sIjeMeyAls .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sIjeMeyAls .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sIjeMeyAls .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sIjeMeyAls .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sIjeMeyAls ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sIjeMeyAls .navbar-buttons {
  text-align: center;
}
.cid-sIjeMeyAls button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sIjeMeyAls button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sIjeMeyAls button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sIjeMeyAls button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sIjeMeyAls button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sIjeMeyAls button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sIjeMeyAls nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sIjeMeyAls nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sIjeMeyAls nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sIjeMeyAls nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sIjeMeyAls .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sIjeMeyAls a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sIjeMeyAls .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sIjeMeyAls .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sIjeMeyAls .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sIjeMeyAls .navbar {
    height: 77px;
  }
  .cid-sIjeMeyAls .navbar.opened {
    height: auto;
  }
  .cid-sIjeMeyAls .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sIjeSOeUD7 {
  background-image: url("../../../assets/images/nomfusi-singer-songwriter-2-2000x1000.jpg");
}
.cid-sIjeSOeUD7 .mbr-section-title {
  color: #f60d55;
}
.cid-sIjeSOeUD7 .mbr-text,
.cid-sIjeSOeUD7 .mbr-section-btn {
  color: #ffffff;
}
.cid-sIjeSOeUD7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sIjim9jG1C {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sIjim9jG1C .mbr-text {
  color: #ffffff;
}
.cid-sIjim9jG1C .mbr-section-subtitle {
  color: #f60d55;
}
.cid-sIji0vTKF2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f60d55;
}
.cid-sIji0vTKF2 .video-wrapper iframe {
  width: 100%;
}
.cid-sIji0vTKF2 .mbr-section-title,
.cid-sIji0vTKF2 .mbr-description {
  text-align: center;
}
.cid-sIji0vTKF2 .text-wrapper {
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-sIji0vTKF2 .text-wrapper {
    padding: 2rem;
    padding-right: 4rem;
  }
}
.cid-sIji0vTKF2 .mbr-text {
  color: #ffffff;
}
.cid-sIji0vTKF2 .mbr-section-subtitle {
  color: #000000;
}
.cid-sIjkQhOAQ4 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sIjkQhOAQ4 .mbr-text {
  color: #ffffff;
}
.cid-sIjkQhOAQ4 .mbr-section-subtitle {
  color: #f60d55;
}
.cid-sIjkSqpzZM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f60d55;
}
.cid-sIjkSqpzZM .video-wrapper iframe {
  width: 100%;
}
.cid-sIjkSqpzZM .mbr-section-title,
.cid-sIjkSqpzZM .mbr-description {
  text-align: center;
}
.cid-sIjkSqpzZM .text-wrapper {
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-sIjkSqpzZM .text-wrapper {
    padding: 2rem;
    padding-right: 4rem;
  }
}
.cid-sIjkSqpzZM .mbr-text {
  color: #000000;
}
.cid-sIjkSqpzZM .mbr-section-subtitle {
  color: #000000;
}
.cid-sIjeMgQpP6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sIjeMgQpP6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sIjeMgQpP6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sIjeMgQpP6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sIjeMgQpP6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sIjeMgQpP6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sIjeMgQpP6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sIjeMgQpP6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sIjeMgQpP6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sIjeMgQpP6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sIjeMgQpP6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sIjeMgQpP6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sIjeMgQpP6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sIjeMgQpP6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sIjeMgQpP6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sJfultTwke .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-sJfultTwke .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sJfultTwke .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sJfultTwke .nav-link {
  position: relative;
}
.cid-sJfultTwke .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sJfultTwke .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sJfultTwke .container {
  display: flex;
  margin: auto;
}
.cid-sJfultTwke .navbar.navbar-short .nav-link,
.cid-sJfultTwke .navbar.navbar-short .navbar-caption,
.cid-sJfultTwke .navbar.navbar-short .mbr-iconfont,
.cid-sJfultTwke .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sJfultTwke .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sJfultTwke .navbar-caption {
  padding-right: 3rem;
}
.cid-sJfultTwke .dropdown-menu,
.cid-sJfultTwke .navbar.opened {
  background: #000000 !important;
}
.cid-sJfultTwke .nav-item:focus,
.cid-sJfultTwke .nav-link:focus {
  outline: none;
}
.cid-sJfultTwke .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sJfultTwke .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sJfultTwke .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJfultTwke .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-sJfultTwke .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJfultTwke .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJfultTwke .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sJfultTwke .navbar.opened {
  transition: all .3s;
}
.cid-sJfultTwke .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sJfultTwke .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sJfultTwke .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJfultTwke .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sJfultTwke .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJfultTwke .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sJfultTwke .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJfultTwke .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJfultTwke .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sJfultTwke .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJfultTwke .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJfultTwke .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJfultTwke .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJfultTwke .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sJfultTwke .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJfultTwke .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJfultTwke .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJfultTwke .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sJfultTwke .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sJfultTwke .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sJfultTwke .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJfultTwke .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sJfultTwke .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJfultTwke .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJfultTwke .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJfultTwke .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJfultTwke .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJfultTwke .dropdown-item.active,
.cid-sJfultTwke .dropdown-item:active {
  background-color: transparent;
}
.cid-sJfultTwke .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sJfultTwke .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJfultTwke .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJfultTwke .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sJfultTwke .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJfultTwke .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJfultTwke ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sJfultTwke .navbar-buttons {
  text-align: center;
}
.cid-sJfultTwke button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sJfultTwke button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sJfultTwke button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJfultTwke button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJfultTwke button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJfultTwke button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJfultTwke nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJfultTwke nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJfultTwke nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJfultTwke nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJfultTwke .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJfultTwke a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sJfultTwke .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sJfultTwke .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sJfultTwke .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJfultTwke .navbar {
    height: 77px;
  }
  .cid-sJfultTwke .navbar.opened {
    height: auto;
  }
  .cid-sJfultTwke .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJfvnXF1zK {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #000000;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sJfvnXF1zK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sJfvnXF1zK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJfvnXF1zK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sJfvnXF1zK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sJfvnXF1zK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sJfvnXF1zK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sJfvnXF1zK .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-sJfvnXF1zK .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-sJfvnXF1zK .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-sJfvnXF1zK .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-sJfvnXF1zK .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-sJfvnXF1zK .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-sJfvnXF1zK .mbr-gallery-filter ul {
  display: block;
}
.cid-sJfvnXF1zK .mbr-gallery-filter ul li {
  position: relative;
}
.cid-sJfvnXF1zK .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-sJfvnXF1zK .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-sJfvnXF1zK .mbr-gallery-filter li.active::after,
.cid-sJfvnXF1zK .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-sJfvnXF1zK .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sJfvnXF1zK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sJfvnXF1zK .icon-focus:before {
  content: '\e95e';
}
.cid-sJfvnXF1zK .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-sJfvnXF1zK .mbr-section-title {
  margin: 0;
}
.cid-sJfvnXF1zK .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sJfvnXF1zK .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-sJfvnXF1zK .mbr-section-title,
.cid-sJfvnXF1zK .underline {
  color: #f60d55;
}
.cid-sJfvnXF1zK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJfulvK8WG {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sJfulvK8WG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sJfulvK8WG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sJfulvK8WG .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sJfulvK8WG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sJfulvK8WG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sJfulvK8WG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sJfulvK8WG .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sJfulvK8WG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sJfulvK8WG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sJfulvK8WG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sJfulvK8WG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sJfulvK8WG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sJfulvK8WG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sJfulvK8WG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sJfCRHyMqS {
  padding-top: 6rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-sJfCRHyMqS .two__background:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  max-width: 49%;
  width: 100%;
  height: 100%;
  background-color: #bbbbbb;
  z-index: 0;
}
.cid-sJfCRHyMqS .slider__content {
  padding-top: 52px;
  text-align: left;
}
.cid-sJfCRHyMqS .mbr-section-subtitle {
  color: #d3045f;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.cid-sJfCRHyMqS .mbr-section-title {
  margin-bottom: 33px;
  color: #f60d55;
}
.cid-sJfCRHyMqS .slider__image {
  margin-left: 11.8%;
}
.cid-sJfCRHyMqS .img-wrap {
  max-width: 100%;
}
.cid-sJfCRHyMqS .img-wrap img {
  width: 100%;
  object-fit: cover;
}
.cid-sJfCRHyMqS .carousel-indicators {
  display: flex;
  flex-direction: column;
  margin: 0;
  transition: all 0.25s;
  height: 100%;
  width: 50px;
  left: 44.5%;
  right: auto;
}
.cid-sJfCRHyMqS .carousel-indicators .active {
  background: #003d59;
  opacity: 1;
  border: none;
}
.cid-sJfCRHyMqS .carousel-indicators .active:before {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.2;
}
.cid-sJfCRHyMqS .carousel-indicators li {
  width: 12px;
  height: 12px;
  border: none;
  margin-bottom: 32px;
  box-sizing: border-box;
  background-color: #003d59;
  border-radius: 50%;
  position: relative;
  opacity: 0.2;
}
.cid-sJfCRHyMqS .carousel-controls a {
  border-radius: 50%;
  border: 2px solid #003d59;
  background-color: transparent;
}
.cid-sJfCRHyMqS .carousel-controls a span {
  transition: all 0.3s;
  color: #003d59;
  font-size: 18px;
}
.cid-sJfCRHyMqS .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-sJfCRHyMqS .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-sJfCRHyMqS .carousel-controls .carousel-control-next,
.cid-sJfCRHyMqS .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-sJfCRHyMqS .carousel-controls .carousel-control-next {
  right: 40%;
  bottom: 5px;
  top: auto;
  left: auto;
}
.cid-sJfCRHyMqS .carousel-controls .carousel-control-prev {
  right: 45%;
  bottom: 5px;
  top: auto;
  left: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJfCRHyMqS .image-element {
    min-width: 50%;
  }
  .cid-sJfCRHyMqS .media-container-row {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-sJfCRHyMqS .two__background:before {
    max-width: 90%;
  }
  .cid-sJfCRHyMqS .carousel-indicators {
    flex-direction: row;
    height: 50px;
    width: 100%;
    left: auto;
    bottom: 0;
    right: auto;
  }
  .cid-sJfCRHyMqS .carousel-indicators li {
    margin: 0 16px;
  }
  .cid-sJfCRHyMqS .slider__content {
    padding-top: 0;
    margin-bottom: 72px;
  }
  .cid-sJfCRHyMqS .mbr-section-subtitle {
    margin-bottom: 6px;
  }
  .cid-sJfCRHyMqS .mbr-section-subtitle:after {
    content: none;
  }
  .cid-sJfCRHyMqS .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-sJfCRHyMqS .slider__image {
    margin-left: 0;
    margin-bottom: 100px;
  }
  .cid-sJfCRHyMqS .img-wrap {
    width: 100%;
  }
  .cid-sJfCRHyMqS .carousel-controls {
    display: none;
  }
  .cid-sJfCRHyMqS .carousel-inner {
    margin-bottom: 0;
  }
}
.cid-sJfCRHyMqS .mbr-text {
  color: #ffffff;
}
.cid-sJfzlR64b7 .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-sJfzlR64b7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sJfzlR64b7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sJfzlR64b7 .nav-link {
  position: relative;
}
.cid-sJfzlR64b7 .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sJfzlR64b7 .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sJfzlR64b7 .container {
  display: flex;
  margin: auto;
}
.cid-sJfzlR64b7 .navbar.navbar-short .nav-link,
.cid-sJfzlR64b7 .navbar.navbar-short .navbar-caption,
.cid-sJfzlR64b7 .navbar.navbar-short .mbr-iconfont,
.cid-sJfzlR64b7 .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sJfzlR64b7 .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sJfzlR64b7 .navbar-caption {
  padding-right: 3rem;
}
.cid-sJfzlR64b7 .dropdown-menu,
.cid-sJfzlR64b7 .navbar.opened {
  background: #000000 !important;
}
.cid-sJfzlR64b7 .nav-item:focus,
.cid-sJfzlR64b7 .nav-link:focus {
  outline: none;
}
.cid-sJfzlR64b7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sJfzlR64b7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sJfzlR64b7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJfzlR64b7 .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-sJfzlR64b7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJfzlR64b7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJfzlR64b7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sJfzlR64b7 .navbar.opened {
  transition: all .3s;
}
.cid-sJfzlR64b7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sJfzlR64b7 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sJfzlR64b7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJfzlR64b7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sJfzlR64b7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJfzlR64b7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sJfzlR64b7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJfzlR64b7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJfzlR64b7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sJfzlR64b7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJfzlR64b7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJfzlR64b7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJfzlR64b7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJfzlR64b7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sJfzlR64b7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJfzlR64b7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJfzlR64b7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJfzlR64b7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sJfzlR64b7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sJfzlR64b7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sJfzlR64b7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJfzlR64b7 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sJfzlR64b7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJfzlR64b7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJfzlR64b7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJfzlR64b7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJfzlR64b7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJfzlR64b7 .dropdown-item.active,
.cid-sJfzlR64b7 .dropdown-item:active {
  background-color: transparent;
}
.cid-sJfzlR64b7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sJfzlR64b7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJfzlR64b7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJfzlR64b7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sJfzlR64b7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJfzlR64b7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJfzlR64b7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sJfzlR64b7 .navbar-buttons {
  text-align: center;
}
.cid-sJfzlR64b7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sJfzlR64b7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sJfzlR64b7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJfzlR64b7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJfzlR64b7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJfzlR64b7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJfzlR64b7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJfzlR64b7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJfzlR64b7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJfzlR64b7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJfzlR64b7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJfzlR64b7 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sJfzlR64b7 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sJfzlR64b7 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sJfzlR64b7 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJfzlR64b7 .navbar {
    height: 77px;
  }
  .cid-sJfzlR64b7 .navbar.opened {
    height: auto;
  }
  .cid-sJfzlR64b7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJfEBQAtxR {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #000000;
}
.cid-sJfEBQAtxR .mbr-section-title {
  margin-bottom: 0;
}
.cid-sJfEBQAtxR .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-sJfEBQAtxR .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sJfEBQAtxR .mbr-iconfont:hover {
  color: #f60d55;
}
.cid-sJfEBQAtxR .image-wrap {
  position: relative;
}
.cid-sJfEBQAtxR .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-sJfEBQAtxR .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-sJfEBQAtxR .card-wrap {
  margin-bottom: 3rem;
}
.cid-sJfEBQAtxR .card-wrap .social-media {
  transition-delay: 0.3s;
}
.cid-sJfEBQAtxR .card-wrap:hover .social-media {
  opacity: 1;
}
.cid-sJfEBQAtxR .card-wrap:hover .img-overlay {
  opacity: 1;
}
@media (max-width: 991px) {
  .cid-sJfEBQAtxR .card-wrap .social-media {
    opacity: 1;
  }
  .cid-sJfEBQAtxR .card-wrap .img-overlay {
    opacity: 1;
  }
}
.cid-sJfEBQAtxR .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-sJfEBQAtxR .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-sJfEBQAtxR .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-sJfEBQAtxR .img-overlay {
  background: linear-gradient(transparent, #232323);
  pointer-events: none;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-sJfEBQAtxR .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-sJfEBQAtxR .mbr-role {
  color: #ffffff;
}
.cid-sJfEBQAtxR .mbr-text {
  color: #767676;
}
.cid-sJfEBQAtxR .mbr-name {
  color: #ffffff;
}
.cid-sJfG4O4snl {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #000000;
}
.cid-sJfG4O4snl .mbr-section-title {
  margin-bottom: 0;
}
.cid-sJfG4O4snl .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-sJfG4O4snl .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sJfG4O4snl .mbr-iconfont:hover {
  color: #f60d55;
}
.cid-sJfG4O4snl .image-wrap {
  position: relative;
}
.cid-sJfG4O4snl .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-sJfG4O4snl .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-sJfG4O4snl .card-wrap {
  margin-bottom: 3rem;
}
.cid-sJfG4O4snl .card-wrap .social-media {
  transition-delay: 0.3s;
}
.cid-sJfG4O4snl .card-wrap:hover .social-media {
  opacity: 1;
}
.cid-sJfG4O4snl .card-wrap:hover .img-overlay {
  opacity: 1;
}
@media (max-width: 991px) {
  .cid-sJfG4O4snl .card-wrap .social-media {
    opacity: 1;
  }
  .cid-sJfG4O4snl .card-wrap .img-overlay {
    opacity: 1;
  }
}
.cid-sJfG4O4snl .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-sJfG4O4snl .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-sJfG4O4snl .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-sJfG4O4snl .img-overlay {
  background: linear-gradient(transparent, #232323);
  pointer-events: none;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-sJfG4O4snl .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-sJfG4O4snl .mbr-role {
  color: #ffffff;
}
.cid-sJfG4O4snl .mbr-text {
  color: #767676;
}
.cid-sJfG4O4snl .mbr-name {
  color: #ffffff;
}
.cid-sJfzlS3CB9 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sJfzlS3CB9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sJfzlS3CB9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sJfzlS3CB9 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sJfzlS3CB9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sJfzlS3CB9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sJfzlS3CB9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sJfzlS3CB9 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sJfzlS3CB9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sJfzlS3CB9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sJfzlS3CB9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sJfzlS3CB9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sJfzlS3CB9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sJfzlS3CB9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sJfzlS3CB9 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sJfHgXdFxT {
  padding-top: 135px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-sJfHgXdFxT p {
  margin-bottom: 0;
}
.cid-sJfHgXdFxT .section-header {
  margin-bottom: 2rem;
}
.cid-sJfHgXdFxT .wrap {
  display: flex;
  align-items: center;
  padding-bottom: 2px;
}
.cid-sJfHgXdFxT .icon-wrapper {
  border-radius: 100%;
  border: 2px solid #f60d55;
}
.cid-sJfHgXdFxT .icon {
  min-width: 33px;
  height: 33px;
  font-size: .7rem;
  font-weight: 900;
  color: black;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  transition: all 0.3s;
  transform: scaleY(-1);
}
.cid-sJfHgXdFxT .icon:before {
  content: "\e908" !important;
}
.cid-sJfHgXdFxT .panel-title.collapsed .icon {
  transform: scaleY(1) !important;
}
.cid-sJfHgXdFxT .mbr-section-title {
  color: #f60d55;
  text-align: left;
}
.cid-sJfHgXdFxT .card .card-header a.panel-title {
  background-color: transparent!important;
  margin-top: 0px!important;
}
.cid-sJfHgXdFxT .accordion-content {
  max-width: 28rem !important;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.cid-sJfHgXdFxT .panel-group {
  width: 100%;
}
.cid-sJfHgXdFxT .panel-title {
  border-radius: 0px;
}
.cid-sJfHgXdFxT .card {
  margin-bottom: 1rem !important;
}
.cid-sJfHgXdFxT .card .card-header {
  background: none;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sJfHgXdFxT .card .card-header a.panel-title {
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 900;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sJfHgXdFxT .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sJfHgXdFxT .card .panel-body {
  padding: 1rem  0 1.5rem 0;
}
.cid-sJfHgXdFxT .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sJfHgXdFxT .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-sJfHgXdFxT .header-text {
  color: #ffffff;
  margin-left: .75rem;
}
.cid-sJfHgXdFxT .panel-text {
  color: #ffffff;
}
.cid-sJfHgXdFxT .mbr-section-subtitle {
  text-align: left;
  color: #f60d55;
}
@media (max-width: 767px) {
  .cid-sJfHgXdFxT .accordion-section {
    margin-top: 2rem;
  }
}
.cid-sJfHgXdFxT .sign {
  color: #f60d55;
}
.cid-sOOXUxsetR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-sOOXUxsetR .row {
  flex-direction: row-reverse;
}
.cid-sOOXUxsetR .video-wrapper iframe {
  width: 100%;
}
.cid-sOOXUxsetR .mbr-section-title,
.cid-sOOXUxsetR .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sOOXUxsetR .text-wrapper {
    padding: 2rem;
  }
}
.cid-sOOXUxsetR .mbr-section-title {
  color: #f60d55;
}
.cid-sOOXUxsetR .mbr-section-subtitle {
  color: #f60d55;
}
.cid-sOOXUxsetR .mbr-text {
  color: #ffffff;
}
.cid-sJfGN9hn3L .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-sJfGN9hn3L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sJfGN9hn3L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sJfGN9hn3L .nav-link {
  position: relative;
}
.cid-sJfGN9hn3L .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sJfGN9hn3L .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sJfGN9hn3L .container {
  display: flex;
  margin: auto;
}
.cid-sJfGN9hn3L .navbar.navbar-short .nav-link,
.cid-sJfGN9hn3L .navbar.navbar-short .navbar-caption,
.cid-sJfGN9hn3L .navbar.navbar-short .mbr-iconfont,
.cid-sJfGN9hn3L .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sJfGN9hn3L .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sJfGN9hn3L .navbar-caption {
  padding-right: 3rem;
}
.cid-sJfGN9hn3L .dropdown-menu,
.cid-sJfGN9hn3L .navbar.opened {
  background: #000000 !important;
}
.cid-sJfGN9hn3L .nav-item:focus,
.cid-sJfGN9hn3L .nav-link:focus {
  outline: none;
}
.cid-sJfGN9hn3L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sJfGN9hn3L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sJfGN9hn3L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJfGN9hn3L .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-sJfGN9hn3L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJfGN9hn3L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJfGN9hn3L .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sJfGN9hn3L .navbar.opened {
  transition: all .3s;
}
.cid-sJfGN9hn3L .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sJfGN9hn3L .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sJfGN9hn3L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJfGN9hn3L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sJfGN9hn3L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJfGN9hn3L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sJfGN9hn3L .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJfGN9hn3L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJfGN9hn3L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sJfGN9hn3L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJfGN9hn3L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJfGN9hn3L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJfGN9hn3L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJfGN9hn3L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sJfGN9hn3L .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJfGN9hn3L .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJfGN9hn3L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJfGN9hn3L .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sJfGN9hn3L .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sJfGN9hn3L .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sJfGN9hn3L .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJfGN9hn3L .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sJfGN9hn3L .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJfGN9hn3L .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJfGN9hn3L .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJfGN9hn3L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJfGN9hn3L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJfGN9hn3L .dropdown-item.active,
.cid-sJfGN9hn3L .dropdown-item:active {
  background-color: transparent;
}
.cid-sJfGN9hn3L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sJfGN9hn3L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJfGN9hn3L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJfGN9hn3L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sJfGN9hn3L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJfGN9hn3L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJfGN9hn3L ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sJfGN9hn3L .navbar-buttons {
  text-align: center;
}
.cid-sJfGN9hn3L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sJfGN9hn3L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sJfGN9hn3L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJfGN9hn3L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJfGN9hn3L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJfGN9hn3L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJfGN9hn3L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJfGN9hn3L nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJfGN9hn3L nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJfGN9hn3L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJfGN9hn3L .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJfGN9hn3L a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sJfGN9hn3L .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sJfGN9hn3L .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sJfGN9hn3L .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJfGN9hn3L .navbar {
    height: 77px;
  }
  .cid-sJfGN9hn3L .navbar.opened {
    height: auto;
  }
  .cid-sJfGN9hn3L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJfGNb2DIc {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sJfGNb2DIc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sJfGNb2DIc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sJfGNb2DIc .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sJfGNb2DIc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sJfGNb2DIc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sJfGNb2DIc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sJfGNb2DIc .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sJfGNb2DIc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sJfGNb2DIc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sJfGNb2DIc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sJfGNb2DIc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sJfGNb2DIc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sJfGNb2DIc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sJfGNb2DIc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sJfNef9tw9 .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-sJfNef9tw9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sJfNef9tw9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sJfNef9tw9 .nav-link {
  position: relative;
}
.cid-sJfNef9tw9 .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sJfNef9tw9 .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sJfNef9tw9 .container {
  display: flex;
  margin: auto;
}
.cid-sJfNef9tw9 .navbar.navbar-short .nav-link,
.cid-sJfNef9tw9 .navbar.navbar-short .navbar-caption,
.cid-sJfNef9tw9 .navbar.navbar-short .mbr-iconfont,
.cid-sJfNef9tw9 .navbar.navbar-short .btn {
  color: #000000 !important;
  border-color: #000000;
}
.cid-sJfNef9tw9 .navbar.navbar-short .hamburger span {
  background: #000000 !important;
}
.cid-sJfNef9tw9 .navbar-caption {
  padding-right: 3rem;
}
.cid-sJfNef9tw9 .dropdown-menu,
.cid-sJfNef9tw9 .navbar.opened {
  background: #000000 !important;
}
.cid-sJfNef9tw9 .nav-item:focus,
.cid-sJfNef9tw9 .nav-link:focus {
  outline: none;
}
.cid-sJfNef9tw9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sJfNef9tw9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sJfNef9tw9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJfNef9tw9 .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-sJfNef9tw9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJfNef9tw9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJfNef9tw9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-sJfNef9tw9 .navbar.opened {
  transition: all .3s;
}
.cid-sJfNef9tw9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sJfNef9tw9 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sJfNef9tw9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJfNef9tw9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sJfNef9tw9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJfNef9tw9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sJfNef9tw9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJfNef9tw9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJfNef9tw9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sJfNef9tw9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJfNef9tw9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJfNef9tw9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJfNef9tw9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJfNef9tw9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sJfNef9tw9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJfNef9tw9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJfNef9tw9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJfNef9tw9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sJfNef9tw9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sJfNef9tw9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sJfNef9tw9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJfNef9tw9 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sJfNef9tw9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJfNef9tw9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJfNef9tw9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJfNef9tw9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJfNef9tw9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJfNef9tw9 .dropdown-item.active,
.cid-sJfNef9tw9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sJfNef9tw9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sJfNef9tw9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJfNef9tw9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJfNef9tw9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sJfNef9tw9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJfNef9tw9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJfNef9tw9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sJfNef9tw9 .navbar-buttons {
  text-align: center;
}
.cid-sJfNef9tw9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sJfNef9tw9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sJfNef9tw9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJfNef9tw9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJfNef9tw9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJfNef9tw9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJfNef9tw9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJfNef9tw9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJfNef9tw9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJfNef9tw9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJfNef9tw9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJfNef9tw9 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sJfNef9tw9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sJfNef9tw9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sJfNef9tw9 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJfNef9tw9 .navbar {
    height: 77px;
  }
  .cid-sJfNef9tw9 .navbar.opened {
    height: auto;
  }
  .cid-sJfNef9tw9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJfNopIO9U {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-sJfNopIO9U .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #f60d55;
  margin-bottom: 2rem;
}
.cid-sJfNopIO9U .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sJfNopIO9U .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sJfNopIO9U .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sJfNopIO9U .mbr-section-title {
  color: #f60d55;
}
.cid-sJfOzfCYkN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-sJfNegRO5S {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sJfNegRO5S .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sJfNegRO5S .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sJfNegRO5S .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sJfNegRO5S .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sJfNegRO5S .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sJfNegRO5S .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sJfNegRO5S .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sJfNegRO5S .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sJfNegRO5S .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sJfNegRO5S .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sJfNegRO5S .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sJfNegRO5S .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sJfNegRO5S .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sJfNegRO5S .media-container-row .row-copirayt p {
  width: 100%;
}
