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: #6592e6 !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: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !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: #6592e6 !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: #205ac5 !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: #6592e6;
}
.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: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #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: #6592e6 !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: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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='%236592e6' %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-trZHf5OnFu .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-trZHf5OnFu .nav-item:focus,
.cid-trZHf5OnFu .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-trZHf5OnFu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-trZHf5OnFu .nav-item .nav-link {
    position: relative;
  }
  .cid-trZHf5OnFu .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #6592e6, #ff6666);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-trZHf5OnFu .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-trZHf5OnFu .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-trZHf5OnFu .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-trZHf5OnFu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trZHf5OnFu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trZHf5OnFu .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-trZHf5OnFu .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #000000;
  background: linear-gradient(#e6c63b, #000000);
  background: none;
}
.cid-trZHf5OnFu .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #000000 !important;
  background: linear-gradient(#e6c63b, #000000) !important;
}
.cid-trZHf5OnFu .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-trZHf5OnFu .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-trZHf5OnFu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trZHf5OnFu .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.show,
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-trZHf5OnFu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trZHf5OnFu .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-trZHf5OnFu .navbar.collapsed .right-menu,
.cid-trZHf5OnFu .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu .navbar .navbar-collapse.show,
  .cid-trZHf5OnFu .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-trZHf5OnFu .navbar .navbar-collapse.show .brand-container,
  .cid-trZHf5OnFu .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-trZHf5OnFu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-trZHf5OnFu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-trZHf5OnFu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trZHf5OnFu .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-trZHf5OnFu .navbar .right-menu,
  .cid-trZHf5OnFu .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-trZHf5OnFu .navbar.navbar-short {
  min-height: 60px;
}
.cid-trZHf5OnFu .navbar.navbar-short .mbr-overlay {
  background: #000000 !important;
  background: linear-gradient(#e6c63b, #000000) !important;
}
.cid-trZHf5OnFu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-trZHf5OnFu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-trZHf5OnFu .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trZHf5OnFu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trZHf5OnFu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trZHf5OnFu .dropdown-item.active,
.cid-trZHf5OnFu .dropdown-item:active {
  background-color: transparent;
}
.cid-trZHf5OnFu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trZHf5OnFu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trZHf5OnFu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trZHf5OnFu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-trZHf5OnFu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trZHf5OnFu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trZHf5OnFu ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-trZHf5OnFu .navbar-buttons {
  margin-left: auto;
}
.cid-trZHf5OnFu button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trZHf5OnFu .navbar-dropdown {
  position: fixed;
}
.cid-trZHf5OnFu a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-trZHf5OnFu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-trZHf5OnFu .right-menu,
.cid-trZHf5OnFu .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-trZHf5OnFu .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-trZHf5OnFu .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-trZHf5OnFu .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-trZHf5OnFu .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-trZHf5OnFu .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-trZHf5OnFu .card-wrapper {
  z-index: 3;
}
.cid-trZHf5OnFu .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-trZHf5OnFu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJk2o3yTQd {
  overflow: hidden !important;
  background-image: url("../../../assets/images/20211007-185937.gif");
}
.cid-uJk2o3yTQd .container-fluid {
  padding: 0 5rem;
}
.cid-uJk2o3yTQd .animated-element {
  color: #ffffff;
}
.cid-uJk2o3yTQd .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-uJk2o3yTQd .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uJk2o3yTQd .container-fluid {
    padding: 0 1rem;
  }
  .cid-uJk2o3yTQd .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-uJk2o3yTQd .mbr-section-subtitle,
.cid-uJk2o3yTQd .mbr-section-btn {
  text-align: left;
}
.cid-ttjTZhcVeL {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-ttjTZhcVeL h3 {
  line-height: 1;
  letter-spacing: -3px;
  position: relative;
}
.cid-ttjTZhcVeL h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-ttjTZhcVeL h3:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: -120px;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-ttjTZhcVeL .mbr-iconfont {
  margin-top: 150px;
  display: block;
  font-size: 3rem;
  color: #000000;
}
.cid-ttjTZhcVeL H3 {
  color: #e6c63b;
}
.cid-uJphoskvbd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-uJphoskvbd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uJphoskvbd .row {
  flex-direction: row-reverse;
}
.cid-uJphoskvbd img {
  width: 100%;
}
.cid-uJphoskvbd .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uJphoskvbd .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #6592e6;
}
.cid-uJphoskvbd .svg-top .st0 {
  fill: #000000;
}
@media (max-width: 992px) {
  .cid-uJphoskvbd .svg-top {
    width: 1000px;
  }
}
.cid-uJphoskvbd .mbr-description {
  color: #ffffff;
}
.cid-ttjUDoL9dq {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-ttjUDoL9dq h3 {
  position: relative;
}
.cid-ttjUDoL9dq h3:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: -130px;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-ttjUDoL9dq .mbr-iconfont {
  margin-top: 160px;
  display: block;
  font-size: 3rem;
  color: #e6c63b;
}
.cid-ttjUDoL9dq H3 {
  color: #ffffff;
}
.cid-uJk6DaX6qG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cid-uJk6DaX6qG .mbr-section-title {
  margin: 20px 0;
  color: #202020;
}
.cid-uJk6DaX6qG .shape {
  position: absolute;
  z-index: -1;
  bottom: -1.5rem;
  right: 0;
  max-width: 160px;
}
.cid-uJk6DaX6qG .shape img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cid-uJk6DaX6qG .shape {
    max-width: 80px;
  }
}
.cid-ttjVAzWe3D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/fondo-negro-con-chispas-doradas-efecto-borroso-concepto-de-composicin-festiva-cerrar-vertical-copiar-espacio-168597890-640x900.jpg");
}
.cid-ttjVAzWe3D h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-ttjVAzWe3D span {
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-ttjVAzWe3D .mbr-section-title {
  color: #ffffff;
}
.cid-tsEkLh8x6J {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1-1920x995.jpg");
}
.cid-tsEkLh8x6J .mbr-overlay {
  background: #000000;
  opacity: 0.7;
}
.cid-tsEkLh8x6J .item {
  position: relative;
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tsEkLh8x6J .mbr-link {
  position: absolute;
  bottom: -100%;
  left: 2rem;
  color: #ffffff;
  z-index: 3;
  transition: all 0.6s;
}
.cid-tsEkLh8x6J .mbr-text {
  opacity: 0;
  transition: all 0.1s;
}
.cid-tsEkLh8x6J .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tsEkLh8x6J .item-wrapper:before {
  content: "";
  top: 110%;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #6592e6;
  z-index: 2;
  opacity: 0.9;
  pointer-events: none;
  transition: all 0.5s;
  transition-delay: 0.1s;
}
.cid-tsEkLh8x6J .item-wrapper:hover:before,
.cid-tsEkLh8x6J .item-wrapper:focus-within:before {
  top: 0rem;
  transition-delay: 0s;
}
.cid-tsEkLh8x6J .item-wrapper:hover .item-content,
.cid-tsEkLh8x6J .item-wrapper:focus-within .item-content {
  opacity: 1;
  top: 1rem;
}
.cid-tsEkLh8x6J .item-wrapper:hover .mbr-link,
.cid-tsEkLh8x6J .item-wrapper:focus-within .mbr-link {
  bottom: 1rem;
}
.cid-tsEkLh8x6J .item-wrapper:hover .mbr-text,
.cid-tsEkLh8x6J .item-wrapper:focus-within .mbr-text {
  opacity: 1;
}
.cid-tsEkLh8x6J .item-content {
  position: absolute;
  top: 380px;
  left: 0;
  transition: all 0.6s;
  padding: 1rem 2rem;
  z-index: 3;
}
@media (max-width: 992px) {
  .cid-tsEkLh8x6J .item-wrapper:before {
    top: 0rem;
    transition-delay: 0s;
  }
  .cid-tsEkLh8x6J .item-content {
    opacity: 1;
    top: 1rem;
  }
  .cid-tsEkLh8x6J .mbr-link {
    bottom: 1rem;
  }
  .cid-tsEkLh8x6J .mbr-text {
    opacity: 1;
  }
}
.cid-tsEkLh8x6J .item-subtitle {
  color: #e1f5ff;
}
.cid-tsEkLh8x6J .item-img {
  overflow: hidden;
}
.cid-tsEkLh8x6J img,
.cid-tsEkLh8x6J .item-img {
  width: 100%;
  transition: all 1s;
  height: 500px;
  object-fit: cover;
}
.cid-tsEkLh8x6J h5 {
  margin: 0;
}
.cid-tsEkLh8x6J .item:focus,
.cid-tsEkLh8x6J span:focus {
  outline: none;
}
.cid-tsEkLh8x6J .mbr-section-title {
  color: #232323;
  text-align: right;
}
.cid-tsEkLh8x6J .item-title {
  color: #ffffff;
}
.cid-tsEkLh8x6J .mbr-text,
.cid-tsEkLh8x6J .mbr-section-btn {
  color: #000000;
}
.cid-tsEmqBhUWj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tsEmqBhUWj .mbr-section-title {
  color: #e6c63b;
}
.cid-tsEmqBhUWj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uJk6zloPl5 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-uJk6zloPl5 .card-wrapper {
  display: flex;
  padding: 0 1.5rem;
}
@media (max-width: 1600px) {
  .cid-uJk6zloPl5 .card-wrapper {
    padding: 0;
  }
}
.cid-uJk6zloPl5 img {
  width: 100%;
}
.cid-uJk6zloPl5 .mbr-iconfont {
  font-size: 3rem;
  background: linear-gradient(to left, #ff6666, #6592e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uJk6zloPl5 .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #ff6666, #6592e6);
}
.cid-uJk6zloPl5 .icon-wrapper {
  margin: auto;
  margin-right: 1.5rem;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}
.cid-uJk6zloPl5 h4 {
  margin: 0;
}
.cid-uJk6zloPl5 .card-text {
  color: #ffffff;
}
.cid-uJk6zloPl5 .mbr-text {
  color: #000000;
}
.cid-uJk6zloPl5 .card-title {
  color: #ffffff;
}
@media (min-width: 1200px) {
  .cid-uJk6zloPl5 .mbr-text {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .cid-uJk6zloPl5 .card-wrapper {
    flex-direction: column;
    margin: auto;
    text-align: center;
  }
  .cid-uJk6zloPl5 .card-wrapper .icon-wrapper {
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJk6zloPl5 .mbr-text {
    padding-bottom: 2rem;
    max-width: 100%;
  }
}
.cid-uJk6zloPl5 H3 {
  color: #787324;
}
.cid-uJk6zloPl5 .mbr-section-title,
.cid-uJk6zloPl5 .title-wrapper {
  color: #e6c63b;
}
.cid-uJk6zloPl5 .mbr-text,
.cid-uJk6zloPl5 .mbr-section-btn {
  color: #ffffff;
}
.cid-tsEpElZfDj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tsEpElZfDj .card-wrapper {
  z-index: 3;
}
.cid-tsEpElZfDj .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tsEpElZfDj:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tsEpElZfDj .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tsEpElZfDj .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tsEpElZfDj H2 {
  text-align: left;
  color: #e6c63b;
}
.cid-tt7oZ3KzY5 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-tt7oZ3KzY5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt7oZ3KzY5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tt7oZ3KzY5 .col-title {
  margin-bottom: 2.5rem;
}
.cid-tt7oZ3KzY5 .mbr-section-title {
  color: #44af69;
}
.cid-tt7oZ3KzY5 .mbr-section-subtitle {
  color: #1F1D1A;
  margin-top: 1.5rem;
}
.cid-tt7oZ3KzY5 .cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  column-gap: 1rem;
}
.cid-tt7oZ3KzY5 .card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 192px;
  height: 96px;
}
.cid-tt7oZ3KzY5 .card img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tt7oZ3KzY5 .mbr-section-btn {
  margin-top: 46px;
}
.cid-tt7oZ3KzY5 .bg-img {
  position: absolute;
  width: 100%;
  background-color: #000000;
  aspect-ratio: 1;
  border-radius: 9999px;
  left: 0;
  top: 0;
  transform: translateY(-50%);
}
.cid-tt7oX9p2zH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tt7oX9p2zH h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-tt7oX9p2zH span {
  background-image: url("../../../assets/images/28197-1920x1080.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-tt7oX9p2zH .mbr-section-title {
  color: #e6c63b;
  text-align: center;
}
.cid-trZFOrMGdG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 1400px) {
  .cid-trZFOrMGdG .wrapper {
    padding: 0 4rem 0 8rem;
  }
}
.cid-trZFOrMGdG .left-side {
  text-align: left;
  padding-right: 5rem;
}
.cid-trZFOrMGdG .row {
  align-items: center;
}
@media (max-width: 600px) {
  .cid-trZFOrMGdG .mbr-section-btn {
    margin-bottom: 25px;
  }
}
.cid-trZFOrMGdG .mbr-section-title {
  text-align: left;
  color: #522c67;
}
.cid-trZFOrMGdG .mbr-section-subtitle {
  color: #626262;
  margin: 0;
  text-align: left;
}
.cid-trZFOrMGdG .panel-text {
  margin: 0;
  border: 0px;
  color: #e6c63b;
  font-family: "EB Garamond";
}
.cid-trZFOrMGdG span {
  color: #ffffff;
  float: right;
  margin-top: 2px;
}
.cid-trZFOrMGdG .panel-title-edit {
  font-family: 'Cormorant Garamond';
  color: #ffffff;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #e6c63b;
}
.cid-trZFOrMGdG .card-header {
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 0;
}
.cid-trZFOrMGdG .card {
  border-radius: 0;
  margin-bottom: 22px;
}
@media (max-width: 990px) {
  .cid-trZFOrMGdG .left-side {
    padding: 15px;
  }
}
.cid-trZFOrMGdG img {
  width: 100%;
  transition: all 2s;
}
.cid-trZFOrMGdG img:hover {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-ts18vKFPCI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ts18vKFPCI .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #ff6666, #6592e6);
}
.cid-ts18vKFPCI .btn-col {
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
}
@media (max-width: 767px) {
  .cid-ts18vKFPCI .btn-col {
    justify-content: center;
  }
}
.cid-ts18vKFPCI .mbr-text,
.cid-ts18vKFPCI .mbr-section-btn {
  color: #ffffff;
}
.cid-ts18vKFPCI p {
  margin: 0;
}
.cid-ts18vKFPCI .mbr-section-title,
.cid-ts18vKFPCI .title-wrapper {
  color: #e6c63b;
}
.cid-trZA0HIwjH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-trZA0HIwjH .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZA0HIwjH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZA0HIwjH .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-trZA0HIwjH .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-trZA0HIwjH .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-trZA0HIwjH .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-trZA0HIwjH .container {
    max-width: 100%;
  }
  .cid-trZA0HIwjH .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-trZA0HIwjH .item-wrap {
  width: 100%;
}
.cid-trZA0HIwjH .navbar-brand {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-trZA0HIwjH .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trZA0HIwjH .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-trZA0HIwjH .copyright {
  color: #ffffff;
  padding: 0;
  width: 100%;
}
.cid-trZHf5OnFu .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-trZHf5OnFu .nav-item:focus,
.cid-trZHf5OnFu .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-trZHf5OnFu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-trZHf5OnFu .nav-item .nav-link {
    position: relative;
  }
  .cid-trZHf5OnFu .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #6592e6, #ff6666);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-trZHf5OnFu .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-trZHf5OnFu .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-trZHf5OnFu .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-trZHf5OnFu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trZHf5OnFu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trZHf5OnFu .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-trZHf5OnFu .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #000000;
  background: linear-gradient(#e6c63b, #000000);
  background: none;
}
.cid-trZHf5OnFu .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #000000 !important;
  background: linear-gradient(#e6c63b, #000000) !important;
}
.cid-trZHf5OnFu .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-trZHf5OnFu .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-trZHf5OnFu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trZHf5OnFu .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.show,
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-trZHf5OnFu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trZHf5OnFu .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-trZHf5OnFu .navbar.collapsed .right-menu,
.cid-trZHf5OnFu .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu .navbar .navbar-collapse.show,
  .cid-trZHf5OnFu .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-trZHf5OnFu .navbar .navbar-collapse.show .brand-container,
  .cid-trZHf5OnFu .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-trZHf5OnFu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-trZHf5OnFu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-trZHf5OnFu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trZHf5OnFu .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-trZHf5OnFu .navbar .right-menu,
  .cid-trZHf5OnFu .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-trZHf5OnFu .navbar.navbar-short {
  min-height: 60px;
}
.cid-trZHf5OnFu .navbar.navbar-short .mbr-overlay {
  background: #000000 !important;
  background: linear-gradient(#e6c63b, #000000) !important;
}
.cid-trZHf5OnFu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-trZHf5OnFu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-trZHf5OnFu .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trZHf5OnFu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trZHf5OnFu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trZHf5OnFu .dropdown-item.active,
.cid-trZHf5OnFu .dropdown-item:active {
  background-color: transparent;
}
.cid-trZHf5OnFu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trZHf5OnFu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trZHf5OnFu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trZHf5OnFu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-trZHf5OnFu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trZHf5OnFu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trZHf5OnFu ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-trZHf5OnFu .navbar-buttons {
  margin-left: auto;
}
.cid-trZHf5OnFu button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trZHf5OnFu .navbar-dropdown {
  position: fixed;
}
.cid-trZHf5OnFu a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-trZHf5OnFu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-trZHf5OnFu .right-menu,
.cid-trZHf5OnFu .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-trZHf5OnFu .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-trZHf5OnFu .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-trZHf5OnFu .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-trZHf5OnFu .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-trZHf5OnFu .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-trZHf5OnFu .card-wrapper {
  z-index: 3;
}
.cid-trZHf5OnFu .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-trZHf5OnFu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trZt0mpJKy {
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-trZt0mpJKy .animated-element {
  color: #ffffff;
}
.cid-trZt0mpJKy .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffffff;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-trZt0mpJKy .typed-text {
  margin-bottom: 30px;
  color: #ffffff;
}
.cid-trZt0mpJKy .mbr-section-text {
  margin-bottom: 1.125rem;
}
.cid-trZt0mpJKy .mbr-section-text,
.cid-trZt0mpJKy .mbr-section-btn {
  color: #4c4a4b;
}
.cid-trZt0mpJKy .typed-text .typed-text {
  color: #ef8e81;
}
.cid-tsExYl7yvI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-tsExYl7yvI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsExYl7yvI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsExYl7yvI .text-wrapper {
    padding: 2rem;
  }
}
.cid-tsExYl7yvI .mbr-section-title {
  color: #ffffff;
}
.cid-tsExYl7yvI .mbr-text {
  color: #e6c63b;
}
.cid-tsExYl7yvI .mbr-section-title DIV {
  text-align: left;
}
.cid-uJr3e9Zsp7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJr3e9Zsp7 .section-head {
  margin-bottom: 2rem;
}
.cid-uJr3e9Zsp7 .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-uJr3e9Zsp7 .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uJr3e9Zsp7 .row {
    text-align: center;
  }
}
.cid-uJr3e9Zsp7 .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-uJr3e9Zsp7 .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-uJr3e9Zsp7 .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-uJr3e9Zsp7 .wave-container .wave svg path {
  fill: #ffffff;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-tsF3iYt8GV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsF3iYt8GV .section-header {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-tsF3iYt8GV .section-header {
    margin-bottom: 4rem;
  }
}
.cid-tsF3iYt8GV .item-title {
  text-align: left;
}
.cid-tsF3iYt8GV img,
.cid-tsF3iYt8GV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tsF3iYt8GV .item:focus,
.cid-tsF3iYt8GV span:focus {
  outline: none;
}
.cid-tsF3iYt8GV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tsF3iYt8GV .item-wrapper {
  position: relative;
  background: #e6c63b;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsF3iYt8GV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsF3iYt8GV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsF3iYt8GV .mbr-section-btn {
  margin-top: auto !important;
  padding-top: 2rem;
}
.cid-tsF3iYt8GV .mbr-section-title {
  color: #232323;
}
.cid-tsF3iYt8GV .mbr-text,
.cid-tsF3iYt8GV .mbr-section-btn {
  text-align: left;
}
.cid-uJr3EWNocx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uJr3EWNocx .section-head {
  margin-bottom: 2rem;
}
.cid-uJr3EWNocx .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-uJr3EWNocx .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uJr3EWNocx .row {
    text-align: center;
  }
}
.cid-uJr3EWNocx .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-uJr3EWNocx .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-uJr3EWNocx .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-uJr3EWNocx .wave-container .wave svg path {
  fill: #000000;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-trZA0HIwjH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-trZA0HIwjH .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZA0HIwjH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZA0HIwjH .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-trZA0HIwjH .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-trZA0HIwjH .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-trZA0HIwjH .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-trZA0HIwjH .container {
    max-width: 100%;
  }
  .cid-trZA0HIwjH .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-trZA0HIwjH .item-wrap {
  width: 100%;
}
.cid-trZA0HIwjH .navbar-brand {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-trZA0HIwjH .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trZA0HIwjH .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-trZA0HIwjH .copyright {
  color: #ffffff;
  padding: 0;
  width: 100%;
}
.cid-trZHf5OnFu .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-trZHf5OnFu .nav-item:focus,
.cid-trZHf5OnFu .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-trZHf5OnFu .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-trZHf5OnFu .nav-item .nav-link {
    position: relative;
  }
  .cid-trZHf5OnFu .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #6592e6, #ff6666);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-trZHf5OnFu .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-trZHf5OnFu .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-trZHf5OnFu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-trZHf5OnFu .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-trZHf5OnFu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trZHf5OnFu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trZHf5OnFu .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-trZHf5OnFu .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #000000;
  background: linear-gradient(#e6c63b, #000000);
  background: none;
}
.cid-trZHf5OnFu .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #000000 !important;
  background: linear-gradient(#e6c63b, #000000) !important;
}
.cid-trZHf5OnFu .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-trZHf5OnFu .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-trZHf5OnFu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trZHf5OnFu .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.show,
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-trZHf5OnFu .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-trZHf5OnFu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trZHf5OnFu .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-trZHf5OnFu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-trZHf5OnFu .navbar.collapsed .right-menu,
.cid-trZHf5OnFu .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu .navbar .navbar-collapse.show,
  .cid-trZHf5OnFu .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-trZHf5OnFu .navbar .navbar-collapse.show .brand-container,
  .cid-trZHf5OnFu .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-trZHf5OnFu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-trZHf5OnFu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-trZHf5OnFu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-trZHf5OnFu .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-trZHf5OnFu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-trZHf5OnFu .navbar .right-menu,
  .cid-trZHf5OnFu .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-trZHf5OnFu .navbar.navbar-short {
  min-height: 60px;
}
.cid-trZHf5OnFu .navbar.navbar-short .mbr-overlay {
  background: #000000 !important;
  background: linear-gradient(#e6c63b, #000000) !important;
}
.cid-trZHf5OnFu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-trZHf5OnFu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-trZHf5OnFu .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trZHf5OnFu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trZHf5OnFu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trZHf5OnFu .dropdown-item.active,
.cid-trZHf5OnFu .dropdown-item:active {
  background-color: transparent;
}
.cid-trZHf5OnFu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trZHf5OnFu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trZHf5OnFu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trZHf5OnFu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-trZHf5OnFu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-trZHf5OnFu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trZHf5OnFu ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-trZHf5OnFu .navbar-buttons {
  margin-left: auto;
}
.cid-trZHf5OnFu button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-trZHf5OnFu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-trZHf5OnFu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-trZHf5OnFu .navbar-dropdown {
  position: fixed;
}
.cid-trZHf5OnFu a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-trZHf5OnFu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-trZHf5OnFu .right-menu,
.cid-trZHf5OnFu .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-trZHf5OnFu .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-trZHf5OnFu .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-trZHf5OnFu .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-trZHf5OnFu .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-trZHf5OnFu .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-trZHf5OnFu .card-wrapper {
  z-index: 3;
}
.cid-trZHf5OnFu .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-trZHf5OnFu .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-trZHf5OnFu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trZIiToJpg {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/whatsapp-image-2021-11-21-at-10.29.35-pm-1.jpeg-1076x1346.jpg");
}
.cid-trZIiToJpg .mbr-section-title {
  margin-bottom: 58px;
  color: #ffffff;
  text-align: center;
}
.cid-trZIiToJpg .mbr-form-container {
  width: 100%;
  margin-top: 12px;
}
.cid-trZIiToJpg .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-top: 25px;
}
.cid-trZIiToJpg .form-message-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  padding: 0;
}
.cid-trZIiToJpg form .row {
  margin: 0;
  border: none !important;
}
.cid-trZIiToJpg form .form-group {
  flex-grow: 1;
}
.cid-trZIiToJpg form .form-group input,
.cid-trZIiToJpg form .form-group textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.24);
  border: 1px solid #3d626c !important;
}
.cid-trZIiToJpg form .form-group input:hover,
.cid-trZIiToJpg form .form-group textarea:hover,
.cid-trZIiToJpg form .form-group input :focus,
.cid-trZIiToJpg form .form-group textarea :focus,
.cid-trZIiToJpg form .form-group input :active,
.cid-trZIiToJpg form .form-group textarea :active {
  box-shadow: none !important;
}
.cid-trZIiToJpg .form-group input {
  height: 59px;
  padding: 7px 20px !important;
  color: #012b3a;
  font-size: 18px !important;
}
.cid-trZIiToJpg .form-group textarea {
  padding: 7px 20px !important;
  height: 95px;
  font-size: 18px !important;
}
.cid-trZIiToJpg .form-group {
  margin-bottom: 11px !important;
}
.cid-trZIiToJpg .form-group input:focus {
  height: 59px;
  border: 1px solid #818a91;
  background-color: rgba(255, 255, 255, 0.24);
}
.cid-trZIiToJpg .form-group textarea:focus {
  border: 1px solid #818a91;
  background-color: rgba(255, 255, 255, 0.24);
}
.cid-trZIiToJpg .form-group input:hover {
  height: 59px;
  border: 1px solid #818a91;
  background-color: rgba(255, 255, 255, 0.24);
}
.cid-trZIiToJpg .form-group textarea:hover {
  border: 1px solid #818a91;
  background-color: rgba(255, 255, 255, 0.24);
}
.cid-trZIiToJpg .btn {
  padding: 15px 30px !important;
  transition: all .3s !important;
  margin: 5px;
}
.cid-trZIiToJpg a {
  font-weight: 400;
  letter-spacing: 5.4px;
  display: inline-block;
  width: auto;
}
.cid-trZIiToJpg .mbr-section-btn {
  margin-top: 11px;
  text-align: center;
}
.cid-trZIiToJpg .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #012b3a;
  text-align: center;
  letter-spacing: 5.4px;
}
.cid-trZIiToJpg textarea::placeholder {
  color: #6c757d;
  font-size: 18px;
}
.cid-trZIiToJpg input::placeholder {
  color: #6c757d;
  font-size: 18px;
}
.cid-trZIiToJpg .container {
  max-width: 1140px;
}
.cid-trZIiToJpg label {
  color: #6c757d;
  font-size: 18px;
  font-family: 'Outfit';
}
.cid-trZIiToJpg .form-check .form-check-input {
  float: initial;
  height: 20px;
  padding: initial !important;
  border: none !important;
}
.cid-trZIiToJpg .form-check .form-check-input:focus {
  float: initial;
  height: 20px;
  padding: initial !important;
  border: none !important;
}
.cid-trZIHlur4y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-trZIHlur4y .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZIHlur4y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-trZIHlur4y .row {
    flex-direction: column-reverse;
  }
  .cid-trZIHlur4y .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-trZIHlur4y .google-map {
  height: 100%;
  position: relative;
}
.cid-trZIHlur4y .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-trZIHlur4y .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-trZIHlur4y .google-map[data-state] {
  background: #e9e5dc;
}
.cid-trZIHlur4y .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-trZIHlur4y .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-trZIHlur4y .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-trZIHlur4y .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-trZIHlur4y .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-trZIHlur4y .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-trZIHlur4y .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-trZIHlur4y P {
  text-align: center;
}
.cid-trZIHlur4y .mbr-section-title {
  color: #e6c63b;
}
.cid-trZA0HIwjH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-trZA0HIwjH .mbr-fallback-image.disabled {
  display: none;
}
.cid-trZA0HIwjH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-trZA0HIwjH .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-trZA0HIwjH .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-trZA0HIwjH .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-trZA0HIwjH .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-trZA0HIwjH .container {
    max-width: 100%;
  }
  .cid-trZA0HIwjH .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-trZA0HIwjH .item-wrap {
  width: 100%;
}
.cid-trZA0HIwjH .navbar-brand {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-trZA0HIwjH .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trZA0HIwjH .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-trZA0HIwjH .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-trZA0HIwjH .copyright {
  color: #ffffff;
  padding: 0;
  width: 100%;
}
