@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    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-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #66458e !important;
}
.bg-success {
  background-color: #4386f2 !important;
}
.bg-info {
  background-color: #7e038f !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #66458e !important;
  border-color: #66458e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #9c170a !important;
  border-color: #9c170a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #540c05 !important;
  border-color: #540c05 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #540c05 !important;
  border-color: #540c05 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7e038f !important;
  border-color: #7e038f !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #3c0144 !important;
  border-color: #3c0144 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3c0144 !important;
  border-color: #3c0144 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #4386f2 !important;
  border-color: #4386f2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #0f5dd9 !important;
  border-color: #0f5dd9 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0f5dd9 !important;
  border-color: #0f5dd9 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #352449;
  color: #352449 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #3c0904;
  color: #3c0904 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #9c170a;
  border-color: #9c170a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #9c170a !important;
  border-color: #9c170a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #26012b;
  color: #26012b !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #7e038f;
  border-color: #7e038f;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7e038f !important;
  border-color: #7e038f !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #0d52c2;
  color: #0d52c2 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #4386f2;
  border-color: #4386f2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #4386f2 !important;
  border-color: #4386f2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #66458e !important;
}
.text-secondary {
  color: #9c170a !important;
}
.text-success {
  color: #4386f2 !important;
}
.text-info {
  color: #7e038f !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #352449 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #3c0904 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #0d52c2 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #26012b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #4386f2;
}
.alert-info {
  background-color: #7e038f;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #66458e;
  border-color: #66458e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #66458e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a68cc7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #df17fa;
}
.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 a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #66458e;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #66458e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #66458e;
  border-bottom-color: #66458e;
}
.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: #66458e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #9c170a !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2366458e' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .nav-item,
.cid-rTdUcaBReN .nav-link,
.cid-rTdUcaBReN .navbar-caption {
  font-weight: normal;
}
.cid-rTdUcaBReN .nav-item:focus,
.cid-rTdUcaBReN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rTdUcaBReN .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rTdUcaBReN .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-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rTdUcaBReN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rTdUcaBReN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9c170a;
  background: none;
}
.cid-rTdUcaBReN .navbar.opened {
  transition: all .3s;
  background: #9c170a !important;
}
.cid-rTdUcaBReN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rTdUcaBReN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rTdUcaBReN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rTdUcaBReN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rTdUcaBReN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 8rem);
  }
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rTdUcaBReN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rTdUcaBReN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rTdUcaBReN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rTdUcaBReN .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-rTdUcaBReN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rTdUcaBReN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rTdUcaBReN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rTdUcaBReN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rTdUcaBReN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rTdUcaBReN .navbar.navbar-short {
  background: #9c170a !important;
  min-height: 60px;
}
.cid-rTdUcaBReN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rTdUcaBReN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rTdUcaBReN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rTdUcaBReN .dropdown-item.active,
.cid-rTdUcaBReN .dropdown-item:active {
  background-color: transparent;
}
.cid-rTdUcaBReN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rTdUcaBReN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rTdUcaBReN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rTdUcaBReN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9c170a;
}
.cid-rTdUcaBReN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rTdUcaBReN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rTdUcaBReN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rTdUcaBReN .navbar-buttons {
  text-align: center;
}
.cid-rTdUcaBReN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rTdUcaBReN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rTdUcaBReN a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rTdUcaBReN .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rTdUcaBReN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rTdUcaBReN .soc-item {
  margin: .5rem .3rem;
}
.cid-rTdUcaBReN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rTdUcaBReN .navbar {
    height: 77px;
  }
  .cid-rTdUcaBReN .navbar.opened {
    height: auto;
  }
  .cid-rTdUcaBReN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rTdUjOupxp .row {
  align-items: center;
  -webkit-align-items: center;
}
.cid-rTdUjOupxp .form-1 {
  z-index: 1;
  background-color: transparent;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cid-rTdUjOupxp .form-1 .mbr-overlay {
  z-index: -1;
}
.cid-rTdUjOupxp .form-group {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-rTdUjOupxp .form-control {
  color: #ffffff !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-rTdUjOupxp .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rTdUjOupxp .input-group-btn {
  display: block;
  padding-left: 0;
}
.cid-rTdUjOupxp input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rTdUjOupxp input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rTdUjOupxp .form-subtitle {
  line-height: 1.6;
  color: #767676;
}
.cid-rTdUjOupxp .mbr-section-subtitle {
  color: #cccccc;
}
.cid-rTdUjOupxp .form-text {
  line-height: 1.6;
  color: #767676;
  margin: 0;
}
@media (min-width: 992px) {
  .cid-rTdUjOupxp .text-element {
    padding-right: 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rTdUjOupxp .form-1 {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rTdUjOupxp .underline .line {
    height: 2px;
  }
  .cid-rTdUjOupxp .text-element {
    padding-bottom: 1rem;
  }
  .cid-rTdUjOupxp .form-1 {
    padding: 2rem;
    margin: 1rem;
  }
  .cid-rTdUjOupxp .mbr-section-subtitle,
  .cid-rTdUjOupxp .mbr-section-title,
  .cid-rTdUjOupxp .mbr-text,
  .cid-rTdUjOupxp .mbr-section-btn,
  .cid-rTdUjOupxp .form-title,
  .cid-rTdUjOupxp .form-subtitle,
  .cid-rTdUjOupxp .input-group-btn,
  .cid-rTdUjOupxp .form-text {
    text-align: center !important;
  }
}
.cid-rTdUjOupxp .form-subtitle,
.cid-rTdUjOupxp input.field {
  color: #bbbbbb;
}
.cid-rTdUjOupxp .form-text,
.cid-rTdUjOupxp .input-group-btn {
  color: #bbbbbb;
}
.cid-rTdUjOupxp .form-title {
  color: #efefef;
}
.cid-rTdWTYxEdn {
  overflow: hidden !important;
}
.cid-rTdWTYxEdn .animated-element {
  color: #000000;
}
.cid-rTdWTYxEdn .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rTdWTYxEdn .mbr-section-subtitle {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rTdWTYxEdn .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rTdWTYxEdn .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-rTdWTYxEdn .img-block {
    padding-bottom: 2rem;
  }
}
.cid-rTdWTYxEdn .mbr-section-title {
  color: #fac769;
}
.cid-rTdWTYxEdn .mbr-text,
.cid-rTdWTYxEdn .mbr-section-btn {
  text-align: left;
}
.cid-rTdWhbAdcT {
  padding-top: 90px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x960.jpg");
}
.cid-rTdWhbAdcT .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rTdWhbAdcT .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 4rem;
}
.cid-rTdWhbAdcT .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-rTdWhbAdcT .card-text {
  margin-top: 2rem;
  color: #000000;
}
.cid-rTdWhbAdcT .card-box {
  margin-bottom: 1rem;
}
.cid-rTdWhbAdcT .num {
  color: #9c170a;
}
@media (max-width: 767px) {
  .cid-rTdWhbAdcT .num,
  .cid-rTdWhbAdcT .card-title,
  .cid-rTdWhbAdcT .mbr-text,
  .cid-rTdWhbAdcT .mbr-title,
  .cid-rTdWhbAdcT .mbr-section-subtitle,
  .cid-rTdWhbAdcT .mbr-section-btn {
    text-align: center !important;
  }
  .cid-rTdWhbAdcT .content-column {
    margin-bottom: 2rem;
  }
}
.cid-rTdWhbAdcT .mbr-title {
  color: #9c170a;
}
.cid-rTdWhbAdcT .card-title,
.cid-rTdWhbAdcT .card-img {
  color: #000000;
}
.cid-rTdWhbAdcT .mbr-section-text,
.cid-rTdWhbAdcT .mbr-section-btn {
  color: #000000;
}
.cid-rTFP8yb5WH {
  padding-top: 120px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-rTFP8yb5WH .mbr-text {
  color: #767676;
}
.cid-rTFP8yb5WH .mbr-section-subtitle {
  color: #000000;
}
.cid-rTFP8yb5WH .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rTFP8yb5WH .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 5rem;
}
.cid-rTFP8yb5WH .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-rTFP8yb5WH .card-text {
  padding-top: 2rem;
  color: #000000;
}
.cid-rTFP8yb5WH .card-box {
  padding-bottom: 1rem;
}
.cid-rTFP8yb5WH .num {
  color: #9c170a;
}
@media (max-width: 767px) {
  .cid-rTFP8yb5WH .num,
  .cid-rTFP8yb5WH .card-title,
  .cid-rTFP8yb5WH .mbr-text,
  .cid-rTFP8yb5WH .mbr-title,
  .cid-rTFP8yb5WH .mbr-section-subtitle,
  .cid-rTFP8yb5WH .mbr-section-btn,
  .cid-rTFP8yb5WH .mbr-section-title {
    text-align: center !important;
  }
  .cid-rTFP8yb5WH .content-column {
    margin-bottom: 2rem;
  }
}
.cid-rTFP8yb5WH .mbr-section-title {
  text-align: center;
}
.cid-rTFP8yb5WH .card-title,
.cid-rTFP8yb5WH .card-img {
  color: #9c170a;
}
.cid-rTYSTtMu4C {
  padding-top: 90px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-rTYSTtMu4C .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rTYSTtMu4C .card .card-wrapper {
  background: #efefef;
  height: 1%;
}
.cid-rTYSTtMu4C .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-rTYSTtMu4C .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rTYSTtMu4C .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #9c170a;
}
.cid-rTYSTtMu4C .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rTYSTtMu4C .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rTYSTtMu4C .mbr-card-text {
  margin: 0;
}
.cid-rTYSTtMu4C .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-rTYSTtMu4C .mbr-title {
  color: #cccccc;
}
.cid-rTYSTtMu4C .mbr-card-text,
.cid-rTYSTtMu4C .mbr-section-btn {
  color: #cccccc;
}
.cid-rTdVlmbcjb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/1607-2000x1333.jpg");
}
.cid-rTdVlmbcjb .form-control,
.cid-rTdVlmbcjb .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-rTdVlmbcjb .form-control:focus,
.cid-rTdVlmbcjb .form-control:focus:focus {
  outline: none;
}
.cid-rTdVlmbcjb input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-rTdVlmbcjb input::-moz-placeholder {
  color: #5b686b;
}
.cid-rTdVlmbcjb textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-rTdVlmbcjb textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-rTdVlmbcjb .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rTdVlmbcjb .form-control {
  margin-bottom: 15px;
}
.cid-rTdVlmbcjb .map {
  width: 100%;
  height: 30rem;
}
.cid-rTdVlmbcjb .map iframe {
  width: inherit;
  height: 100%;
}
.cid-rTdVlmbcjb .mbr-text {
  color: #767676;
}
.cid-rTdVlmbcjb .input-group-btn {
  display: block;
}
.cid-rTdVlmbcjb .google-map {
  height: 25rem;
  position: relative;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(1);
}
.cid-rTdVlmbcjb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rTdVlmbcjb .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rTdVlmbcjb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rTdVlmbcjb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-rTdVlmbcjb .mbr-section-subtitle,
  .cid-rTdVlmbcjb .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-rTdVlmbcjb .mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-rTdVlmbcjb .mbr-section-subtitle {
  color: #9c170a;
}
.cid-rTdVyRlDKQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
@media (max-width: 767px) {
  .cid-rTdVyRlDKQ .content {
    text-align: center;
  }
  .cid-rTdVyRlDKQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rTdVyRlDKQ .img-logo img {
  height: 6rem;
}
.cid-rTdVyRlDKQ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rTdVyRlDKQ .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-rTdVyRlDKQ .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rTdVyRlDKQ .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rTdVyRlDKQ .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rTdVyRlDKQ .social-list a:hover {
  opacity: 1;
}
.cid-rTdVyRlDKQ .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-rTdVyRlDKQ .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rTdVyRlDKQ input::-webkit-input-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ input::-moz-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ textarea::-moz-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ .list {
  list-style-type: none;
  padding: 0;
}
.cid-rTdVyRlDKQ .list li {
  padding-bottom: .5rem;
}
.cid-rTdVyRlDKQ .list li:last-child {
  padding-bottom: 0;
}
.cid-rTdVyRlDKQ .mbr-footer-list,
.cid-rTdVyRlDKQ .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rTdVyRlDKQ .mbr-footer-list,
  .cid-rTdVyRlDKQ .form-text,
  .cid-rTdVyRlDKQ .footer-title,
  .cid-rTdVyRlDKQ .footer-main-title,
  .cid-rTdVyRlDKQ .form-text,
  .cid-rTdVyRlDKQ .list {
    text-align: center !important;
  }
  .cid-rTdVyRlDKQ .mbr-form,
  .cid-rTdVyRlDKQ .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-rTdVyRlDKQ .footer-title {
  text-align: right;
  color: #9c170a;
}
.cid-rTdVyRlDKQ .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-rTdVyRlDKQ .footer-main-title {
  color: #9c170a;
}
.cid-rTdVyRlDKQ .form-text {
  color: #000000;
}
.cid-rTdVyRlDKQ .mbr-footer-list {
  color: #000000;
}
.cid-rTeoleeJ0d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rTeoleeJ0d .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rTeoleeJ0d .media-container-row .mbr-text {
  color: #cccccc;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .nav-item,
.cid-rTdUcaBReN .nav-link,
.cid-rTdUcaBReN .navbar-caption {
  font-weight: normal;
}
.cid-rTdUcaBReN .nav-item:focus,
.cid-rTdUcaBReN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rTdUcaBReN .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rTdUcaBReN .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-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rTdUcaBReN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rTdUcaBReN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9c170a;
  background: none;
}
.cid-rTdUcaBReN .navbar.opened {
  transition: all .3s;
  background: #9c170a !important;
}
.cid-rTdUcaBReN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rTdUcaBReN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rTdUcaBReN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rTdUcaBReN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rTdUcaBReN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 8rem);
  }
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rTdUcaBReN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rTdUcaBReN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rTdUcaBReN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rTdUcaBReN .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-rTdUcaBReN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rTdUcaBReN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rTdUcaBReN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rTdUcaBReN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rTdUcaBReN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rTdUcaBReN .navbar.navbar-short {
  background: #9c170a !important;
  min-height: 60px;
}
.cid-rTdUcaBReN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rTdUcaBReN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rTdUcaBReN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rTdUcaBReN .dropdown-item.active,
.cid-rTdUcaBReN .dropdown-item:active {
  background-color: transparent;
}
.cid-rTdUcaBReN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rTdUcaBReN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rTdUcaBReN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rTdUcaBReN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9c170a;
}
.cid-rTdUcaBReN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rTdUcaBReN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rTdUcaBReN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rTdUcaBReN .navbar-buttons {
  text-align: center;
}
.cid-rTdUcaBReN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rTdUcaBReN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rTdUcaBReN a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rTdUcaBReN .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rTdUcaBReN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rTdUcaBReN .soc-item {
  margin: .5rem .3rem;
}
.cid-rTdUcaBReN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rTdUcaBReN .navbar {
    height: 77px;
  }
  .cid-rTdUcaBReN .navbar.opened {
    height: auto;
  }
  .cid-rTdUcaBReN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rTeVtVlJlF .row {
  align-items: center;
  -webkit-align-items: center;
}
.cid-rTeVtVlJlF .form-1 {
  z-index: 1;
  background-color: transparent;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cid-rTeVtVlJlF .form-1 .mbr-overlay {
  z-index: -1;
}
.cid-rTeVtVlJlF .form-group {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-rTeVtVlJlF .form-control {
  color: #ffffff !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-rTeVtVlJlF .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rTeVtVlJlF .input-group-btn {
  display: block;
  padding-left: 0;
}
.cid-rTeVtVlJlF input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rTeVtVlJlF input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rTeVtVlJlF .form-subtitle {
  line-height: 1.6;
  color: #767676;
}
.cid-rTeVtVlJlF .mbr-section-subtitle {
  color: #cccccc;
}
.cid-rTeVtVlJlF .form-text {
  line-height: 1.6;
  color: #767676;
  margin: 0;
}
@media (min-width: 992px) {
  .cid-rTeVtVlJlF .text-element {
    padding-right: 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rTeVtVlJlF .form-1 {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rTeVtVlJlF .underline .line {
    height: 2px;
  }
  .cid-rTeVtVlJlF .text-element {
    padding-bottom: 1rem;
  }
  .cid-rTeVtVlJlF .form-1 {
    padding: 2rem;
    margin: 1rem;
  }
  .cid-rTeVtVlJlF .mbr-section-subtitle,
  .cid-rTeVtVlJlF .mbr-section-title,
  .cid-rTeVtVlJlF .mbr-text,
  .cid-rTeVtVlJlF .mbr-section-btn,
  .cid-rTeVtVlJlF .form-title,
  .cid-rTeVtVlJlF .form-subtitle,
  .cid-rTeVtVlJlF .input-group-btn,
  .cid-rTeVtVlJlF .form-text {
    text-align: center !important;
  }
}
.cid-rTeVtVlJlF .form-subtitle,
.cid-rTeVtVlJlF input.field {
  color: #cccccc;
}
#custom-html-e {
  /* Type valid CSS here */
}
#custom-html-e .my-image {
  width: 100%;
}
.cid-rTMS3AoSbT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rTMS3AoSbT .mbr-section-subtitle {
  color: #cccccc;
}
.cid-rTMS3AoSbT .mbr-section-title {
  color: #ffffff;
}
.cid-rTdVyRlDKQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
@media (max-width: 767px) {
  .cid-rTdVyRlDKQ .content {
    text-align: center;
  }
  .cid-rTdVyRlDKQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rTdVyRlDKQ .img-logo img {
  height: 6rem;
}
.cid-rTdVyRlDKQ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rTdVyRlDKQ .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-rTdVyRlDKQ .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rTdVyRlDKQ .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rTdVyRlDKQ .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rTdVyRlDKQ .social-list a:hover {
  opacity: 1;
}
.cid-rTdVyRlDKQ .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-rTdVyRlDKQ .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rTdVyRlDKQ input::-webkit-input-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ input::-moz-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ textarea::-moz-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ .list {
  list-style-type: none;
  padding: 0;
}
.cid-rTdVyRlDKQ .list li {
  padding-bottom: .5rem;
}
.cid-rTdVyRlDKQ .list li:last-child {
  padding-bottom: 0;
}
.cid-rTdVyRlDKQ .mbr-footer-list,
.cid-rTdVyRlDKQ .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rTdVyRlDKQ .mbr-footer-list,
  .cid-rTdVyRlDKQ .form-text,
  .cid-rTdVyRlDKQ .footer-title,
  .cid-rTdVyRlDKQ .footer-main-title,
  .cid-rTdVyRlDKQ .form-text,
  .cid-rTdVyRlDKQ .list {
    text-align: center !important;
  }
  .cid-rTdVyRlDKQ .mbr-form,
  .cid-rTdVyRlDKQ .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-rTdVyRlDKQ .footer-title {
  text-align: right;
  color: #9c170a;
}
.cid-rTdVyRlDKQ .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-rTdVyRlDKQ .footer-main-title {
  color: #9c170a;
}
.cid-rTdVyRlDKQ .form-text {
  color: #000000;
}
.cid-rTdVyRlDKQ .mbr-footer-list {
  color: #000000;
}
.cid-rTeoleeJ0d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rTeoleeJ0d .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rTeoleeJ0d .media-container-row .mbr-text {
  color: #cccccc;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .nav-item,
.cid-rTdUcaBReN .nav-link,
.cid-rTdUcaBReN .navbar-caption {
  font-weight: normal;
}
.cid-rTdUcaBReN .nav-item:focus,
.cid-rTdUcaBReN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rTdUcaBReN .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rTdUcaBReN .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-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rTdUcaBReN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rTdUcaBReN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rTdUcaBReN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9c170a;
  background: none;
}
.cid-rTdUcaBReN .navbar.opened {
  transition: all .3s;
  background: #9c170a !important;
}
.cid-rTdUcaBReN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rTdUcaBReN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rTdUcaBReN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rTdUcaBReN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rTdUcaBReN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 8rem);
  }
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rTdUcaBReN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rTdUcaBReN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rTdUcaBReN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rTdUcaBReN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rTdUcaBReN .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-rTdUcaBReN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rTdUcaBReN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rTdUcaBReN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rTdUcaBReN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rTdUcaBReN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rTdUcaBReN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rTdUcaBReN .navbar.navbar-short {
  background: #9c170a !important;
  min-height: 60px;
}
.cid-rTdUcaBReN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rTdUcaBReN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rTdUcaBReN .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-rTdUcaBReN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rTdUcaBReN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rTdUcaBReN .dropdown-item.active,
.cid-rTdUcaBReN .dropdown-item:active {
  background-color: transparent;
}
.cid-rTdUcaBReN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rTdUcaBReN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rTdUcaBReN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rTdUcaBReN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9c170a;
}
.cid-rTdUcaBReN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rTdUcaBReN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rTdUcaBReN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rTdUcaBReN .navbar-buttons {
  text-align: center;
}
.cid-rTdUcaBReN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rTdUcaBReN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rTdUcaBReN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rTdUcaBReN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rTdUcaBReN a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rTdUcaBReN .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rTdUcaBReN .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rTdUcaBReN .soc-item {
  margin: .5rem .3rem;
}
.cid-rTdUcaBReN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rTdUcaBReN .navbar {
    height: 77px;
  }
  .cid-rTdUcaBReN .navbar.opened {
    height: auto;
  }
  .cid-rTdUcaBReN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rTGXu8pzjC .row {
  align-items: center;
  -webkit-align-items: center;
}
.cid-rTGXu8pzjC .form-1 {
  z-index: 1;
  background-color: transparent;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cid-rTGXu8pzjC .form-1 .mbr-overlay {
  z-index: -1;
}
.cid-rTGXu8pzjC .form-group {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-rTGXu8pzjC .form-control {
  color: #ffffff !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-rTGXu8pzjC .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rTGXu8pzjC .input-group-btn {
  display: block;
  padding-left: 0;
}
.cid-rTGXu8pzjC input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rTGXu8pzjC input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rTGXu8pzjC .form-subtitle {
  line-height: 1.6;
  color: #767676;
}
.cid-rTGXu8pzjC .mbr-section-subtitle {
  color: #e96188;
}
.cid-rTGXu8pzjC .form-text {
  line-height: 1.6;
  color: #767676;
  margin: 0;
}
@media (min-width: 992px) {
  .cid-rTGXu8pzjC .text-element {
    padding-right: 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rTGXu8pzjC .form-1 {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rTGXu8pzjC .underline .line {
    height: 2px;
  }
  .cid-rTGXu8pzjC .text-element {
    padding-bottom: 1rem;
  }
  .cid-rTGXu8pzjC .form-1 {
    padding: 2rem;
    margin: 1rem;
  }
  .cid-rTGXu8pzjC .mbr-section-subtitle,
  .cid-rTGXu8pzjC .mbr-section-title,
  .cid-rTGXu8pzjC .mbr-text,
  .cid-rTGXu8pzjC .mbr-section-btn,
  .cid-rTGXu8pzjC .form-title,
  .cid-rTGXu8pzjC .form-subtitle,
  .cid-rTGXu8pzjC .input-group-btn,
  .cid-rTGXu8pzjC .form-text {
    text-align: center !important;
  }
}
.cid-rTGXu8pzjC .form-subtitle,
.cid-rTGXu8pzjC input.field {
  color: #bbbbbb;
}
#custom-html-n {
  /* Type valid CSS here */
}
#custom-html-n .my-image {
  width: 100%;
}
#custom-html-u {
  /* Type valid CSS here */
}
#custom-html-u .my-image {
  width: 100%;
}
.cid-rTMWhc5BKQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rTMWhc5BKQ .mbr-section-subtitle {
  color: #cccccc;
}
.cid-rTMWhc5BKQ .mbr-section-title {
  color: #cccccc;
}
.cid-rTdVyRlDKQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
@media (max-width: 767px) {
  .cid-rTdVyRlDKQ .content {
    text-align: center;
  }
  .cid-rTdVyRlDKQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rTdVyRlDKQ .img-logo img {
  height: 6rem;
}
.cid-rTdVyRlDKQ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rTdVyRlDKQ .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #232323;
}
.cid-rTdVyRlDKQ .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rTdVyRlDKQ .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rTdVyRlDKQ .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rTdVyRlDKQ .social-list a:hover {
  opacity: 1;
}
.cid-rTdVyRlDKQ .form-control {
  min-height: auto;
  width: 100%;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-rTdVyRlDKQ .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rTdVyRlDKQ input::-webkit-input-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ input::-moz-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ textarea::-moz-placeholder {
  color: #232323;
}
.cid-rTdVyRlDKQ .list {
  list-style-type: none;
  padding: 0;
}
.cid-rTdVyRlDKQ .list li {
  padding-bottom: .5rem;
}
.cid-rTdVyRlDKQ .list li:last-child {
  padding-bottom: 0;
}
.cid-rTdVyRlDKQ .mbr-footer-list,
.cid-rTdVyRlDKQ .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rTdVyRlDKQ .mbr-footer-list,
  .cid-rTdVyRlDKQ .form-text,
  .cid-rTdVyRlDKQ .footer-title,
  .cid-rTdVyRlDKQ .footer-main-title,
  .cid-rTdVyRlDKQ .form-text,
  .cid-rTdVyRlDKQ .list {
    text-align: center !important;
  }
  .cid-rTdVyRlDKQ .mbr-form,
  .cid-rTdVyRlDKQ .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-rTdVyRlDKQ .footer-title {
  text-align: right;
  color: #9c170a;
}
.cid-rTdVyRlDKQ .mbr-footer-list UL {
  text-align: right;
  color: #232323;
}
.cid-rTdVyRlDKQ .footer-main-title {
  color: #9c170a;
}
.cid-rTdVyRlDKQ .form-text {
  color: #000000;
}
.cid-rTdVyRlDKQ .mbr-footer-list {
  color: #000000;
}
.cid-rTeoleeJ0d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rTeoleeJ0d .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rTeoleeJ0d .media-container-row .mbr-text {
  color: #cccccc;
}
