body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Ubuntu-Regular';
  font-size: 2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Jost-SemiBold';
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Ubuntu-Regular';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost-SemiBold';
  font-size: 5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-7 {
  font-family: 'Ubuntu-Regular';
  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: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((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.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.4rem + (5 - 2.4) * ((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: #e43f3f !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: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !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: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !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: #e43f3f !important;
}
.text-secondary {
  color: #e43f3f !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: #a61717 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !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: #e43f3f;
}
.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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.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: 'Ubuntu-Regular';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Ubuntu-Regular';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.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: #e43f3f;
  border-bottom-color: #e43f3f;
}
.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: #e43f3f !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: #e43f3f !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='%23e43f3f' %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-sPkgA0LuJx .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-sPkgA0LuJx .display-2 {
  font-size: 2rem;
}
.cid-sPkgA0LuJx .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-sPkgA0LuJx .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sPkgA0LuJx .dropdown-item:hover {
    color: #232323 !important;
  }
  .cid-sPkgA0LuJx .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-sPkgA0LuJx.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPkgA0LuJx.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sPkgA0LuJx.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sPkgA0LuJx.collapsed .icons-menu {
    margin: auto;
  }
  .cid-sPkgA0LuJx .navbar .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-logo img {
    height: 3.0rem !important;
  }
  .cid-sPkgA0LuJx .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sPkgA0LuJx .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sPkgA0LuJx .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPkgA0LuJx.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-sPkgA0LuJx .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sPkgA0LuJx ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: #efefef;
    text-align: center;
  }
  .cid-sPkgA0LuJx .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPkgA0LuJx .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sPkgA0LuJx .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 330px;
  }
}
@media (min-width: 576px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
.cid-sPkgA0LuJx .container {
  width: 100%;
  max-width: 1220px !important;
  display: flex;
  margin: auto;
}
.cid-sPkgA0LuJx .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #f3efef !important;
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-brand {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sPkgA0LuJx .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b19898;
    box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
    background: rgba(243, 239, 239, 0.95);
    border-bottom-width: 0px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sPkgA0LuJx .navbar .dropdown-item:hover {
    color: #212529 !important;
    background: #eae3e3 !important;
  }
}
.cid-sPkgA0LuJx .navbar.opened {
  transition: all .3s;
}
.cid-sPkgA0LuJx .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-sPkgA0LuJx .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sPkgA0LuJx .nav-link:hover {
  color: #232323 !important;
  background: none !important;
}
.cid-sPkgA0LuJx .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 2px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-sPkgA0LuJx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: right;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sPkgA0LuJx .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 0.1em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-sPkgA0LuJx .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-sPkgA0LuJx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sPkgA0LuJx .navbar-caption {
  padding-right: 1rem;
}
.cid-sPkgA0LuJx .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown-menu,
  .cid-sPkgA0LuJx .navbar.opened {
    background: #ffffff !important;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown-menu,
  .cid-sPkgA0LuJx .navbar.opened {
    background: #f3efef !important;
  }
}
.cid-sPkgA0LuJx .nav-item:focus,
.cid-sPkgA0LuJx .nav-link:focus {
  outline: none;
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 600;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-sPkgA0LuJx .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-sPkgA0LuJx .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-sPkgA0LuJx .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-sPkgA0LuJx .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sPkgA0LuJx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPkgA0LuJx .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: #efefef;
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #232323 !important;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-sPkgA0LuJx .navbar-brand {
  min-height: 40px;
  -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;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sPkgA0LuJx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPkgA0LuJx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPkgA0LuJx .dropdown-item.active,
.cid-sPkgA0LuJx .dropdown-item:active {
  background-color: transparent;
}
.cid-sPkgA0LuJx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 600;
}
.cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPkgA0LuJx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-sPkgA0LuJx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPkgA0LuJx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPkgA0LuJx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar-buttons {
    text-align: right;
    min-width: 150px;
    width: 150px;
  }
}
.cid-sPkgA0LuJx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e43f3f;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPkgA0LuJx .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-sPkgA0LuJx a.nav-link {
  display: flex;
  font-weight: 600;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sPkgA0LuJx .navbar-brand span {
  display: inline-block;
}
.cid-sPkgA0LuJx .navbar-brand a {
  font-weight: 600;
}
.cid-sPkgA0LuJx .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-sPkgA0LuJx .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 600;
}
.cid-sPkgA0LuJx .btn .mbr-iconfont,
.cid-sPkgA0LuJx .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-sPkgA0LuJx .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #232323;
  border-top-color: #232323;
  background: #f52110 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 3.5px;
  padding-bottom: 7px;
  color: #232323;
}
.cid-sPkgA0LuJx .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-sPkgA0LuJx .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-sPkgA0LuJx .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-sPkgA0LuJx img {
  width: auto;
}
.cid-sPkgA0LuJx .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-sPkgA0LuJx .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sPkgA0LuJx .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sPkgA0LuJx a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-sPkgA0LuJx .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0px;
}
.cid-sPkgA0LuJx .socicon {
  line-height: inherit;
}
.cid-sPkgA0LuJx .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-uJsD5wERih {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-uJsD5wERih .mbr-text,
.cid-uJsD5wERih .mbr-section-btn {
  text-align: left;
  color: #d90406;
}
.cid-uJsD5wERih H1 {
  color: #d90406;
  text-align: left;
}
.cid-uJsD5wERih H3 {
  color: #000000;
  text-align: left;
}
.cid-sPX9nZc6BB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fceaea;
}
.cid-sPX9nZc6BB .mbr-text,
.cid-sPX9nZc6BB .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sPX9nZc6BB H1 {
  color: #d90406;
  text-align: left;
}
.cid-sPX9nZc6BB DIV {
  text-align: left;
}
.cid-uiYOm2Pzv2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-uiYOm2Pzv2 .mbr-text,
.cid-uiYOm2Pzv2 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uiYOm2Pzv2 H1 {
  color: #d90406;
  text-align: left;
}
.cid-vj7bdpBYv5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f0f0;
}
.cid-vj7bdpBYv5 .mbr-text,
.cid-vj7bdpBYv5 .mbr-section-btn {
  text-align: center;
  color: #d90406;
}
.cid-vj7bdpBYv5 H1 {
  color: #d90406;
  text-align: left;
}
.cid-vj7bdpBYv5 DIV {
  text-align: center;
}
.cid-vrTR3ioluE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vrTR3ioluE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrTR3ioluE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrTR3ioluE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrTR3ioluE .row {
  flex-direction: row-reverse;
}
.cid-vrTR3ioluE img {
  width: 100%;
}
.cid-vrTR7Nykrk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vrTR7Nykrk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vrTR7Nykrk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vrTR7Nykrk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vrTR7Nykrk .row {
  flex-direction: row-reverse;
}
.cid-vrTR7Nykrk img {
  width: 100%;
}
.cid-vj7bfcROb8 {
  background: #f9f0f0;
  padding-top: 15px;
  padding-bottom: 60px;
}
.cid-vj7bfcROb8 .image-block {
  margin: auto;
}
.cid-vj7bfcROb8 figcaption {
  position: relative;
}
.cid-vj7bfcROb8 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-vj7bfcROb8 .image-block {
    width: 100% !important;
  }
}
.cid-vj7bfcROb8 DIV {
  color: #0f7699;
}
.cid-tGQTywVoFE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tGQTywVoFE .mbr-text,
.cid-tGQTywVoFE .mbr-section-btn {
  text-align: left;
  color: #d90406;
}
.cid-tGQTywVoFE H1 {
  color: #d90406;
  text-align: left;
}
.cid-tGQTywVoFE H3 {
  color: #000000;
  text-align: left;
}
.cid-sQ2QMD5mV9 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fceaea;
}
.cid-sQ2QMD5mV9 .item-img {
  overflow: hidden;
}
.cid-sQ2QMD5mV9 img,
.cid-sQ2QMD5mV9 .item-img {
  width: 100%;
  filter: grayscale(1);
  transition: all 1s;
}
.cid-sQ2QMD5mV9 h5 {
  margin: 0;
}
.cid-sQ2QMD5mV9 .item:focus,
.cid-sQ2QMD5mV9 span:focus {
  outline: none;
}
.cid-sQ2QMD5mV9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sQ2QMD5mV9 .item:hover img,
.cid-sQ2QMD5mV9 .item:hover .item-img {
  filter: grayscale(0);
}
.cid-sQ2QMD5mV9 .item:hover img {
  transform: scale(1.05);
}
.cid-sQ2QMD5mV9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sQ2QMD5mV9 .item-content {
  padding-top: 2rem;
}
.cid-sQ2QMD5mV9 .mbr-section-title {
  color: #232323;
}
.cid-sQ2QMD5mV9 .item-title {
  color: #e43f3f;
  text-align: center;
}
.cid-uj36oFWXsn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uj36oFWXsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uj36oFWXsn .row {
    text-align: center;
  }
  .cid-uj36oFWXsn .row > div {
    margin: auto;
  }
  .cid-uj36oFWXsn .social-row {
    justify-content: center;
  }
}
.cid-uj36oFWXsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uj36oFWXsn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 0rem;
  }
}
.cid-uj36oFWXsn .mbr-text {
  color: #bbbbbb;
}
.cid-uj36oFWXsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uj36oFWXsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uj36oFWXsn .copyright {
  color: #e43f3f;
}
.cid-sQ8bl3fUdQ .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-sQ8bl3fUdQ .display-2 {
  font-size: 2rem;
}
.cid-sQ8bl3fUdQ .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sQ8bl3fUdQ .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-sQ8bl3fUdQ .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sQ8bl3fUdQ .dropdown-item:hover {
    color: #232323 !important;
  }
  .cid-sQ8bl3fUdQ .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-sQ8bl3fUdQ.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQ8bl3fUdQ.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQ8bl3fUdQ.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQ8bl3fUdQ.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQ8bl3fUdQ.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sQ8bl3fUdQ.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQ8bl3fUdQ.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sQ8bl3fUdQ.collapsed .icons-menu {
    margin: auto;
  }
  .cid-sQ8bl3fUdQ .navbar .topLineDivSettings {
    display: none;
  }
  .cid-sQ8bl3fUdQ .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-sQ8bl3fUdQ .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sQ8bl3fUdQ .navbar.navbar-short .navbar-logo img {
    height: 3.0rem !important;
  }
  .cid-sQ8bl3fUdQ .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sQ8bl3fUdQ .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sQ8bl3fUdQ .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQ8bl3fUdQ.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQ8bl3fUdQ .dropdown-menu {
    top: 0;
  }
  .cid-sQ8bl3fUdQ .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQ8bl3fUdQ .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQ8bl3fUdQ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-sQ8bl3fUdQ .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sQ8bl3fUdQ ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQ8bl3fUdQ .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: #efefef;
    text-align: center;
  }
  .cid-sQ8bl3fUdQ .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQ8bl3fUdQ .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQ8bl3fUdQ .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-sQ8bl3fUdQ .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 330px;
  }
}
@media (min-width: 576px) {
  .cid-sQ8bl3fUdQ .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .cid-sQ8bl3fUdQ .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-sQ8bl3fUdQ .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
.cid-sQ8bl3fUdQ .container {
  width: 100%;
  max-width: 1220px !important;
  display: flex;
  margin: auto;
}
.cid-sQ8bl3fUdQ .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #f3efef !important;
}
@media (min-width: 992px) {
  .cid-sQ8bl3fUdQ .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-sQ8bl3fUdQ .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sQ8bl3fUdQ .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-sQ8bl3fUdQ .navbar.navbar-short .navbar-brand {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sQ8bl3fUdQ .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b19898;
    box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
    background: rgba(243, 239, 239, 0.95);
    border-bottom-width: 0px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sQ8bl3fUdQ .navbar .dropdown-item:hover {
    color: #212529 !important;
    background: #eae3e3 !important;
  }
}
.cid-sQ8bl3fUdQ .navbar.opened {
  transition: all .3s;
}
.cid-sQ8bl3fUdQ .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-sQ8bl3fUdQ .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sQ8bl3fUdQ .nav-link:hover {
  color: #232323 !important;
  background: none !important;
}
.cid-sQ8bl3fUdQ .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 2px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-sQ8bl3fUdQ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQ8bl3fUdQ .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-sQ8bl3fUdQ .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: right;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sQ8bl3fUdQ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sQ8bl3fUdQ .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 991px) {
  .cid-sQ8bl3fUdQ .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQ8bl3fUdQ .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 0.1em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .cid-sQ8bl3fUdQ .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQ8bl3fUdQ .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-sQ8bl3fUdQ .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-sQ8bl3fUdQ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sQ8bl3fUdQ .navbar-caption {
  padding-right: 1rem;
}
.cid-sQ8bl3fUdQ .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-sQ8bl3fUdQ .dropdown-menu,
  .cid-sQ8bl3fUdQ .navbar.opened {
    background: #ffffff !important;
  }
}
@media (min-width: 992px) {
  .cid-sQ8bl3fUdQ .dropdown-menu,
  .cid-sQ8bl3fUdQ .navbar.opened {
    background: #f3efef !important;
  }
}
.cid-sQ8bl3fUdQ .nav-item:focus,
.cid-sQ8bl3fUdQ .nav-link:focus {
  outline: none;
}
.cid-sQ8bl3fUdQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 600;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sQ8bl3fUdQ .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQ8bl3fUdQ .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-sQ8bl3fUdQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQ8bl3fUdQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-sQ8bl3fUdQ .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-sQ8bl3fUdQ .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-sQ8bl3fUdQ .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-sQ8bl3fUdQ .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sQ8bl3fUdQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQ8bl3fUdQ .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-sQ8bl3fUdQ .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-sQ8bl3fUdQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: #efefef;
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-sQ8bl3fUdQ .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #232323 !important;
}
.cid-sQ8bl3fUdQ .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-sQ8bl3fUdQ .navbar-brand {
  min-height: 40px;
  -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;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sQ8bl3fUdQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQ8bl3fUdQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQ8bl3fUdQ .dropdown-item.active,
.cid-sQ8bl3fUdQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sQ8bl3fUdQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 600;
}
.cid-sQ8bl3fUdQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQ8bl3fUdQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQ8bl3fUdQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-sQ8bl3fUdQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQ8bl3fUdQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQ8bl3fUdQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sQ8bl3fUdQ .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sQ8bl3fUdQ .navbar-buttons {
    text-align: right;
    min-width: 150px;
    width: 150px;
  }
}
.cid-sQ8bl3fUdQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQ8bl3fUdQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e43f3f;
}
.cid-sQ8bl3fUdQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sQ8bl3fUdQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sQ8bl3fUdQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sQ8bl3fUdQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sQ8bl3fUdQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQ8bl3fUdQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sQ8bl3fUdQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sQ8bl3fUdQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQ8bl3fUdQ .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-sQ8bl3fUdQ a.nav-link {
  display: flex;
  font-weight: 600;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQ8bl3fUdQ .navbar-brand span {
  display: inline-block;
}
.cid-sQ8bl3fUdQ .navbar-brand a {
  font-weight: 600;
}
.cid-sQ8bl3fUdQ .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-sQ8bl3fUdQ .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 600;
}
.cid-sQ8bl3fUdQ .btn .mbr-iconfont,
.cid-sQ8bl3fUdQ .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-sQ8bl3fUdQ .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #232323;
  border-top-color: #232323;
  background: #f52110 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 3.5px;
  padding-bottom: 7px;
  color: #232323;
}
.cid-sQ8bl3fUdQ .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-sQ8bl3fUdQ .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-sQ8bl3fUdQ .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-sQ8bl3fUdQ img {
  width: auto;
}
.cid-sQ8bl3fUdQ .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-sQ8bl3fUdQ .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sQ8bl3fUdQ .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sQ8bl3fUdQ a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-sQ8bl3fUdQ .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0px;
}
.cid-sQ8bl3fUdQ .socicon {
  line-height: inherit;
}
.cid-sQ8bl3fUdQ .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sQH3lUM3WW {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sQH3lUM3WW .mbr-text,
.cid-sQH3lUM3WW .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sQH3lUM3WW H1 {
  color: #d90406;
  text-align: left;
}
.cid-sQH3lUM3WW H3 {
  color: #000000;
  text-align: left;
}
#hrblock-block-33 hr {
  margin: 0;
}
#hrblock-block-5n hr {
  margin: 0;
}
.cid-vsd7GJnBA7 {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vsd7GJnBA7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsd7GJnBA7 .row {
  flex-direction: row-reverse;
}
.cid-vsd7GJnBA7 img {
  width: 100%;
}
.cid-uj36oFWXsn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uj36oFWXsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uj36oFWXsn .row {
    text-align: center;
  }
  .cid-uj36oFWXsn .row > div {
    margin: auto;
  }
  .cid-uj36oFWXsn .social-row {
    justify-content: center;
  }
}
.cid-uj36oFWXsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uj36oFWXsn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 0rem;
  }
}
.cid-uj36oFWXsn .mbr-text {
  color: #bbbbbb;
}
.cid-uj36oFWXsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uj36oFWXsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uj36oFWXsn .copyright {
  color: #e43f3f;
}
.cid-sQd7PhTHgY .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-sQd7PhTHgY .display-2 {
  font-size: 2rem;
}
.cid-sQd7PhTHgY .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-sQd7PhTHgY .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sQd7PhTHgY .dropdown-item:hover {
    color: #232323 !important;
  }
  .cid-sQd7PhTHgY .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-sQd7PhTHgY.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQd7PhTHgY.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sQd7PhTHgY.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sQd7PhTHgY.collapsed .icons-menu {
    margin: auto;
  }
  .cid-sQd7PhTHgY .navbar .topLineDivSettings {
    display: none;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .navbar-logo img {
    height: 3.0rem !important;
  }
  .cid-sQd7PhTHgY .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sQd7PhTHgY .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sQd7PhTHgY .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQd7PhTHgY.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQd7PhTHgY .dropdown-menu {
    top: 0;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-sQd7PhTHgY .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sQd7PhTHgY ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: #efefef;
    text-align: center;
  }
  .cid-sQd7PhTHgY .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQd7PhTHgY .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQd7PhTHgY .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 330px;
  }
}
@media (min-width: 576px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
.cid-sQd7PhTHgY .container {
  width: 100%;
  max-width: 1220px !important;
  display: flex;
  margin: auto;
}
.cid-sQd7PhTHgY .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #f3efef !important;
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .navbar-brand {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sQd7PhTHgY .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b19898;
    box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
    background: rgba(243, 239, 239, 0.95);
    border-bottom-width: 0px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sQd7PhTHgY .navbar .dropdown-item:hover {
    color: #212529 !important;
    background: #eae3e3 !important;
  }
}
.cid-sQd7PhTHgY .navbar.opened {
  transition: all .3s;
}
.cid-sQd7PhTHgY .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-sQd7PhTHgY .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sQd7PhTHgY .nav-link:hover {
  color: #232323 !important;
  background: none !important;
}
.cid-sQd7PhTHgY .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 2px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-sQd7PhTHgY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: right;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sQd7PhTHgY .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 0.1em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-sQd7PhTHgY .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-sQd7PhTHgY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sQd7PhTHgY .navbar-caption {
  padding-right: 1rem;
}
.cid-sQd7PhTHgY .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .dropdown-menu,
  .cid-sQd7PhTHgY .navbar.opened {
    background: #ffffff !important;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .dropdown-menu,
  .cid-sQd7PhTHgY .navbar.opened {
    background: #f3efef !important;
  }
}
.cid-sQd7PhTHgY .nav-item:focus,
.cid-sQd7PhTHgY .nav-link:focus {
  outline: none;
}
.cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 600;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-sQd7PhTHgY .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-sQd7PhTHgY .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-sQd7PhTHgY .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-sQd7PhTHgY .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sQd7PhTHgY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQd7PhTHgY .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: #efefef;
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #232323 !important;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-sQd7PhTHgY .navbar-brand {
  min-height: 40px;
  -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;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sQd7PhTHgY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQd7PhTHgY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQd7PhTHgY .dropdown-item.active,
.cid-sQd7PhTHgY .dropdown-item:active {
  background-color: transparent;
}
.cid-sQd7PhTHgY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 600;
}
.cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQd7PhTHgY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-sQd7PhTHgY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQd7PhTHgY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQd7PhTHgY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .navbar-buttons {
    text-align: right;
    min-width: 150px;
    width: 150px;
  }
}
.cid-sQd7PhTHgY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e43f3f;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQd7PhTHgY .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-sQd7PhTHgY a.nav-link {
  display: flex;
  font-weight: 600;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQd7PhTHgY .navbar-brand span {
  display: inline-block;
}
.cid-sQd7PhTHgY .navbar-brand a {
  font-weight: 600;
}
.cid-sQd7PhTHgY .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-sQd7PhTHgY .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 600;
}
.cid-sQd7PhTHgY .btn .mbr-iconfont,
.cid-sQd7PhTHgY .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-sQd7PhTHgY .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #232323;
  border-top-color: #232323;
  background: #f52110 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 3.5px;
  padding-bottom: 7px;
  color: #232323;
}
.cid-sQd7PhTHgY .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-sQd7PhTHgY .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-sQd7PhTHgY .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-sQd7PhTHgY img {
  width: auto;
}
.cid-sQd7PhTHgY .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-sQd7PhTHgY .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sQd7PhTHgY .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sQd7PhTHgY a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-sQd7PhTHgY .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0px;
}
.cid-sQd7PhTHgY .socicon {
  line-height: inherit;
}
.cid-sQd7PhTHgY .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sQJuteQZcI {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sQJuteQZcI .mbr-text {
  color: #000000;
}
.cid-vsfP7eA5Ib {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-vsfP7eA5Ib .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vsfP7eA5Ib .row {
  flex-direction: row-reverse;
}
.cid-vsfP7eA5Ib img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vsfP7eA5Ib .text-wrapper {
    padding: 2rem;
  }
}
.cid-ulwD6i8gJM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-ulwD6i8gJM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ulwD6i8gJM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ulwD6i8gJM .text-wrapper {
    padding: 2rem;
  }
}
.cid-ulwD6i8gJM .mbr-section-title {
  color: #353535;
}
.cid-ulwD6i8gJM .mbr-text {
  color: #353535;
}
.cid-tg2oLZv6p8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tg2oLZv6p8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tg2oLZv6p8 .row {
  flex-direction: row-reverse;
}
.cid-tg2oLZv6p8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tg2oLZv6p8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQIvOEr7Th {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-sQIvOEr7Th .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQIvOEr7Th img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQIvOEr7Th .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQIvOEr7Th .mbr-section-title {
  color: #353535;
}
.cid-sQIvOEr7Th .mbr-text {
  color: #353535;
}
.cid-sQIvPhIxiS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQIvPhIxiS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQIvPhIxiS .row {
  flex-direction: row-reverse;
}
.cid-sQIvPhIxiS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQIvPhIxiS .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQShSZQmTu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-sQShSZQmTu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQShSZQmTu img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQShSZQmTu .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQShSZQmTu .mbr-section-title {
  color: #353535;
}
.cid-sQShSZQmTu .mbr-text {
  color: #353535;
}
.cid-sQShTCgzbP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQShTCgzbP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQShTCgzbP .row {
  flex-direction: row-reverse;
}
.cid-sQShTCgzbP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQShTCgzbP .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSjyaBFPX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-sQSjyaBFPX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSjyaBFPX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSjyaBFPX .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSjyaBFPX .mbr-section-title {
  color: #353535;
}
.cid-sQSjyaBFPX .mbr-text {
  color: #353535;
}
.cid-sQSjyJtdmC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQSjyJtdmC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSjyJtdmC .row {
  flex-direction: row-reverse;
}
.cid-sQSjyJtdmC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSjyJtdmC .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSlTu4Dmw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-sQSlTu4Dmw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSlTu4Dmw img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSlTu4Dmw .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSlTu4Dmw .mbr-section-title {
  color: #353535;
}
.cid-sQSlTu4Dmw .mbr-text {
  color: #353535;
}
.cid-sQSlTXMglM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQSlTXMglM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSlTXMglM .row {
  flex-direction: row-reverse;
}
.cid-sQSlTXMglM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSlTXMglM .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQTLM6eBg1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQTLM6eBg1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQTLM6eBg1 .row {
  flex-direction: row-reverse;
}
.cid-sQTLM6eBg1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQTLM6eBg1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSlUYr1v9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-sQSlUYr1v9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSlUYr1v9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSlUYr1v9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSlUYr1v9 .mbr-section-title {
  color: #353535;
}
.cid-sQSlUYr1v9 .mbr-text {
  color: #353535;
}
.cid-sQSlVMxoCU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQSlVMxoCU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSlVMxoCU .row {
  flex-direction: row-reverse;
}
.cid-sQSlVMxoCU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSlVMxoCU .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSoXZrlg2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-sQSoXZrlg2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSoXZrlg2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSoXZrlg2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSoXZrlg2 .mbr-section-title {
  color: #353535;
}
.cid-sQSoXZrlg2 .mbr-text {
  color: #353535;
}
.cid-sQSoYJQA2p {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQSoYJQA2p .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSoYJQA2p .row {
  flex-direction: row-reverse;
}
.cid-sQSoYJQA2p img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSoYJQA2p .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSoZtxMza {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-sQSoZtxMza .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSoZtxMza img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSoZtxMza .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSoZtxMza .mbr-section-title {
  color: #353535;
}
.cid-sQSoZtxMza .mbr-text {
  color: #353535;
}
.cid-sQSp050j3I {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQSp050j3I .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSp050j3I .row {
  flex-direction: row-reverse;
}
.cid-sQSp050j3I img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSp050j3I .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSAGOYaqI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-sQSAGOYaqI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSAGOYaqI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSAGOYaqI .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSAGOYaqI .mbr-section-title {
  color: #353535;
}
.cid-sQSAGOYaqI .mbr-text {
  color: #353535;
}
.cid-sQSAL7H89y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQSAL7H89y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSAL7H89y .row {
  flex-direction: row-reverse;
}
.cid-sQSAL7H89y img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSAL7H89y .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSAMsJUpo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-sQSAMsJUpo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQSAMsJUpo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQSAMsJUpo .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQSAMsJUpo .mbr-section-title {
  color: #353535;
}
.cid-sQSAMsJUpo .mbr-text {
  color: #353535;
}
.cid-uj36oFWXsn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uj36oFWXsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uj36oFWXsn .row {
    text-align: center;
  }
  .cid-uj36oFWXsn .row > div {
    margin: auto;
  }
  .cid-uj36oFWXsn .social-row {
    justify-content: center;
  }
}
.cid-uj36oFWXsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uj36oFWXsn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 0rem;
  }
}
.cid-uj36oFWXsn .mbr-text {
  color: #bbbbbb;
}
.cid-uj36oFWXsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uj36oFWXsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uj36oFWXsn .copyright {
  color: #e43f3f;
}
.cid-sQd7PhTHgY .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-sQd7PhTHgY .display-2 {
  font-size: 2rem;
}
.cid-sQd7PhTHgY .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-sQd7PhTHgY .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sQd7PhTHgY .dropdown-item:hover {
    color: #232323 !important;
  }
  .cid-sQd7PhTHgY .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-sQd7PhTHgY.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQd7PhTHgY.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sQd7PhTHgY.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sQd7PhTHgY.collapsed .icons-menu {
    margin: auto;
  }
  .cid-sQd7PhTHgY .navbar .topLineDivSettings {
    display: none;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .navbar-logo img {
    height: 3.0rem !important;
  }
  .cid-sQd7PhTHgY .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sQd7PhTHgY .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sQd7PhTHgY .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQd7PhTHgY.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQd7PhTHgY .dropdown-menu {
    top: 0;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-sQd7PhTHgY .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sQd7PhTHgY ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: #efefef;
    text-align: center;
  }
  .cid-sQd7PhTHgY .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQd7PhTHgY .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQd7PhTHgY .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 330px;
  }
}
@media (min-width: 576px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
.cid-sQd7PhTHgY .container {
  width: 100%;
  max-width: 1220px !important;
  display: flex;
  margin: auto;
}
.cid-sQd7PhTHgY .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #f3efef !important;
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .navbar-brand {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sQd7PhTHgY .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b19898;
    box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
    background: rgba(243, 239, 239, 0.95);
    border-bottom-width: 0px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sQd7PhTHgY .navbar .dropdown-item:hover {
    color: #212529 !important;
    background: #eae3e3 !important;
  }
}
.cid-sQd7PhTHgY .navbar.opened {
  transition: all .3s;
}
.cid-sQd7PhTHgY .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-sQd7PhTHgY .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sQd7PhTHgY .nav-link:hover {
  color: #232323 !important;
  background: none !important;
}
.cid-sQd7PhTHgY .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 2px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-sQd7PhTHgY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: right;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sQd7PhTHgY .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 0.1em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-sQd7PhTHgY .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-sQd7PhTHgY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sQd7PhTHgY .navbar-caption {
  padding-right: 1rem;
}
.cid-sQd7PhTHgY .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .dropdown-menu,
  .cid-sQd7PhTHgY .navbar.opened {
    background: #ffffff !important;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .dropdown-menu,
  .cid-sQd7PhTHgY .navbar.opened {
    background: #f3efef !important;
  }
}
.cid-sQd7PhTHgY .nav-item:focus,
.cid-sQd7PhTHgY .nav-link:focus {
  outline: none;
}
.cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 600;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-sQd7PhTHgY .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-sQd7PhTHgY .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-sQd7PhTHgY .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-sQd7PhTHgY .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sQd7PhTHgY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQd7PhTHgY .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: #efefef;
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #232323 !important;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-sQd7PhTHgY .navbar-brand {
  min-height: 40px;
  -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;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sQd7PhTHgY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQd7PhTHgY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQd7PhTHgY .dropdown-item.active,
.cid-sQd7PhTHgY .dropdown-item:active {
  background-color: transparent;
}
.cid-sQd7PhTHgY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 600;
}
.cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQd7PhTHgY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-sQd7PhTHgY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQd7PhTHgY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQd7PhTHgY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .navbar-buttons {
    text-align: right;
    min-width: 150px;
    width: 150px;
  }
}
.cid-sQd7PhTHgY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e43f3f;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQd7PhTHgY .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-sQd7PhTHgY a.nav-link {
  display: flex;
  font-weight: 600;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQd7PhTHgY .navbar-brand span {
  display: inline-block;
}
.cid-sQd7PhTHgY .navbar-brand a {
  font-weight: 600;
}
.cid-sQd7PhTHgY .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-sQd7PhTHgY .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 600;
}
.cid-sQd7PhTHgY .btn .mbr-iconfont,
.cid-sQd7PhTHgY .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-sQd7PhTHgY .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #232323;
  border-top-color: #232323;
  background: #f52110 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 3.5px;
  padding-bottom: 7px;
  color: #232323;
}
.cid-sQd7PhTHgY .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-sQd7PhTHgY .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-sQd7PhTHgY .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-sQd7PhTHgY img {
  width: auto;
}
.cid-sQd7PhTHgY .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-sQd7PhTHgY .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sQd7PhTHgY .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sQd7PhTHgY a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-sQd7PhTHgY .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0px;
}
.cid-sQd7PhTHgY .socicon {
  line-height: inherit;
}
.cid-sQd7PhTHgY .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sQTVPxBU3T {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sQTTz9gS3l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sQTTz9gS3l .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-sQTTz9gS3l .number {
  color: #d90406;
}
.cid-sQTTz9gS3l .period {
  display: block;
}
.cid-sQTTz9gS3l .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sQTTz9gS3l .period {
    font-size: 0.8rem;
  }
}
.cid-sQTTz9gS3l .btn {
  height: 100%;
  margin: 0;
}
.cid-sQTTz9gS3l .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sQTTz9gS3l .mbr-section-title {
  color: #ffffff;
}
.cid-sQTTz9gS3l .mbr-text {
  color: #ffffff;
}
.cid-sQTTz9gS3l .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sQTTz9gS3l .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #e43f3f;
  border: 2px solid #e43f3f;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sQTTz9gS3l .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sQTTz9gS3l .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #e43f3f;
  color: #ffffff;
}
.cid-sQTTz9gS3l H3 {
  color: #4479d9;
  text-align: left;
}
.cid-sQTTz9gS3l .mbr-text,
.cid-sQTTz9gS3l .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sQTTz9gS3l .mbr-section-subtitle {
  text-align: center;
}
.cid-uj36oFWXsn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uj36oFWXsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uj36oFWXsn .row {
    text-align: center;
  }
  .cid-uj36oFWXsn .row > div {
    margin: auto;
  }
  .cid-uj36oFWXsn .social-row {
    justify-content: center;
  }
}
.cid-uj36oFWXsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uj36oFWXsn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 0rem;
  }
}
.cid-uj36oFWXsn .mbr-text {
  color: #bbbbbb;
}
.cid-uj36oFWXsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uj36oFWXsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uj36oFWXsn .copyright {
  color: #e43f3f;
}
.cid-sPkgA0LuJx .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-sPkgA0LuJx .display-2 {
  font-size: 2rem;
}
.cid-sPkgA0LuJx .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-sPkgA0LuJx .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sPkgA0LuJx .dropdown-item:hover {
    color: #232323 !important;
  }
  .cid-sPkgA0LuJx .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-sPkgA0LuJx.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPkgA0LuJx.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sPkgA0LuJx.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sPkgA0LuJx.collapsed .icons-menu {
    margin: auto;
  }
  .cid-sPkgA0LuJx .navbar .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-logo img {
    height: 3.0rem !important;
  }
  .cid-sPkgA0LuJx .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sPkgA0LuJx .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sPkgA0LuJx .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPkgA0LuJx.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-sPkgA0LuJx .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sPkgA0LuJx ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: #efefef;
    text-align: center;
  }
  .cid-sPkgA0LuJx .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPkgA0LuJx .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sPkgA0LuJx .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 330px;
  }
}
@media (min-width: 576px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
.cid-sPkgA0LuJx .container {
  width: 100%;
  max-width: 1220px !important;
  display: flex;
  margin: auto;
}
.cid-sPkgA0LuJx .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #f3efef !important;
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-brand {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sPkgA0LuJx .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b19898;
    box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
    background: rgba(243, 239, 239, 0.95);
    border-bottom-width: 0px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sPkgA0LuJx .navbar .dropdown-item:hover {
    color: #212529 !important;
    background: #eae3e3 !important;
  }
}
.cid-sPkgA0LuJx .navbar.opened {
  transition: all .3s;
}
.cid-sPkgA0LuJx .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-sPkgA0LuJx .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sPkgA0LuJx .nav-link:hover {
  color: #232323 !important;
  background: none !important;
}
.cid-sPkgA0LuJx .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 2px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-sPkgA0LuJx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: right;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sPkgA0LuJx .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 0.1em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-sPkgA0LuJx .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-sPkgA0LuJx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sPkgA0LuJx .navbar-caption {
  padding-right: 1rem;
}
.cid-sPkgA0LuJx .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown-menu,
  .cid-sPkgA0LuJx .navbar.opened {
    background: #ffffff !important;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown-menu,
  .cid-sPkgA0LuJx .navbar.opened {
    background: #f3efef !important;
  }
}
.cid-sPkgA0LuJx .nav-item:focus,
.cid-sPkgA0LuJx .nav-link:focus {
  outline: none;
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 600;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-sPkgA0LuJx .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-sPkgA0LuJx .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-sPkgA0LuJx .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-sPkgA0LuJx .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sPkgA0LuJx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPkgA0LuJx .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: #efefef;
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #232323 !important;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-sPkgA0LuJx .navbar-brand {
  min-height: 40px;
  -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;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sPkgA0LuJx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPkgA0LuJx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPkgA0LuJx .dropdown-item.active,
.cid-sPkgA0LuJx .dropdown-item:active {
  background-color: transparent;
}
.cid-sPkgA0LuJx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 600;
}
.cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPkgA0LuJx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-sPkgA0LuJx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPkgA0LuJx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPkgA0LuJx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar-buttons {
    text-align: right;
    min-width: 150px;
    width: 150px;
  }
}
.cid-sPkgA0LuJx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e43f3f;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPkgA0LuJx .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-sPkgA0LuJx a.nav-link {
  display: flex;
  font-weight: 600;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sPkgA0LuJx .navbar-brand span {
  display: inline-block;
}
.cid-sPkgA0LuJx .navbar-brand a {
  font-weight: 600;
}
.cid-sPkgA0LuJx .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-sPkgA0LuJx .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 600;
}
.cid-sPkgA0LuJx .btn .mbr-iconfont,
.cid-sPkgA0LuJx .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-sPkgA0LuJx .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #232323;
  border-top-color: #232323;
  background: #f52110 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 3.5px;
  padding-bottom: 7px;
  color: #232323;
}
.cid-sPkgA0LuJx .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-sPkgA0LuJx .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-sPkgA0LuJx .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-sPkgA0LuJx img {
  width: auto;
}
.cid-sPkgA0LuJx .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-sPkgA0LuJx .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sPkgA0LuJx .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sPkgA0LuJx a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-sPkgA0LuJx .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0px;
}
.cid-sPkgA0LuJx .socicon {
  line-height: inherit;
}
.cid-sPkgA0LuJx .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sScsLkS0I3 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sScsLkS0I3 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sScsLkS0I3 .row {
    flex-direction: column-reverse;
  }
  .cid-sScsLkS0I3 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sScsLkS0I3 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sScsLkS0I3 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sScsLkS0I3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sROL5pEqag {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sROL5pEqag .mbr-text {
  color: #000000;
}
.cid-sRP1tkRmQY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
.cid-sRP1tkRmQY .mbr-text {
  color: #000000;
}
.cid-sRP9QjwlIy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fceaea;
}
.cid-sRP9QjwlIy .card-img {
  background-color: #fff;
}
.cid-sRP9QjwlIy .card-box {
  padding: 2rem;
  background-color: #fafafa;
}
.cid-sRP9QjwlIy h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sRP9QjwlIy p {
  text-align: left;
}
.cid-sRP9QjwlIy .mbr-text {
  color: #d90406;
  text-align: center;
}
.cid-sRP9QjwlIy .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sRP9QjwlIy .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sRP9QjwlIy .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sRP9QjwlIy .card-title {
  color: #d90406;
}
.cid-sSGPWOLy6o {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sSGPWOLy6o .card-img {
  background-color: #fff;
}
.cid-sSGPWOLy6o .card-box {
  padding: 2rem;
  background-color: #f9f0f0;
}
.cid-sSGPWOLy6o h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sSGPWOLy6o p {
  text-align: left;
}
.cid-sSGPWOLy6o .mbr-text {
  color: #d90406;
  text-align: center;
}
.cid-sSGPWOLy6o .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sSGPWOLy6o .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sSGPWOLy6o .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sSGPWOLy6o .card-title {
  color: #d90406;
}
.cid-sRP9Rx9PnU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fceaea;
}
.cid-sRP9Rx9PnU .card-img {
  background-color: #fff;
}
.cid-sRP9Rx9PnU .card-box {
  padding: 2rem;
  background-color: #fafafa;
}
.cid-sRP9Rx9PnU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sRP9Rx9PnU p {
  text-align: left;
}
.cid-sRP9Rx9PnU .mbr-text {
  color: #d90406;
  text-align: center;
}
.cid-sRP9Rx9PnU .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sRP9Rx9PnU .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sRP9Rx9PnU .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sRP9Rx9PnU .card-title {
  color: #d90406;
}
.cid-vquKa4LLMM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fceaea;
}
.cid-vquKa4LLMM .card-img {
  background-color: #fff;
}
.cid-vquKa4LLMM .card-box {
  padding: 2rem;
  background-color: #fafafa;
}
.cid-vquKa4LLMM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vquKa4LLMM p {
  text-align: left;
}
.cid-vquKa4LLMM .mbr-text {
  color: #d90406;
  text-align: center;
}
.cid-vquKa4LLMM .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-vquKa4LLMM .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-vquKa4LLMM .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-vquKa4LLMM .card-title {
  color: #d90406;
}
.cid-sSc3NNrBNx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sSc3NNrBNx .card-img {
  background-color: #fff;
}
.cid-sSc3NNrBNx .card-box {
  padding: 2rem;
  background-color: #f9f0f0;
}
.cid-sSc3NNrBNx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sSc3NNrBNx p {
  text-align: left;
}
.cid-sSc3NNrBNx .mbr-text {
  color: #d90406;
  text-align: center;
}
.cid-sSc3NNrBNx .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sSc3NNrBNx .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sSc3NNrBNx .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sSc3NNrBNx .card-title {
  color: #d90406;
}
.cid-sScdgpXuhE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fceaea;
}
.cid-sScdgpXuhE .card-img {
  background-color: #fff;
}
.cid-sScdgpXuhE .card-box {
  padding: 2rem;
  background-color: #fafafa;
}
.cid-sScdgpXuhE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sScdgpXuhE p {
  text-align: left;
}
.cid-sScdgpXuhE .mbr-text {
  color: #d90406;
  text-align: center;
}
.cid-sScdgpXuhE .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sScdgpXuhE .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sScdgpXuhE .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sScdgpXuhE .card-title {
  color: #d90406;
}
.cid-sScjRQThpC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sScjRQThpC .card-img {
  background-color: #fff;
}
.cid-sScjRQThpC .card-box {
  padding: 2rem;
  background-color: #f9f0f0;
}
.cid-sScjRQThpC h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sScjRQThpC p {
  text-align: left;
}
.cid-sScjRQThpC .mbr-text {
  color: #d90406;
  text-align: center;
}
.cid-sScjRQThpC .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sScjRQThpC .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sScjRQThpC .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sScjRQThpC .card-title {
  color: #d90406;
}
.cid-sSH17Hrb48 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fceaea;
}
.cid-sSH17Hrb48 .card-img {
  background-color: #fff;
}
.cid-sSH17Hrb48 .card-box {
  padding: 2rem;
  background-color: #fafafa;
}
.cid-sSH17Hrb48 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sSH17Hrb48 p {
  text-align: left;
}
.cid-sSH17Hrb48 .mbr-text {
  color: #d90406;
  text-align: center;
}
.cid-sSH17Hrb48 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sSH17Hrb48 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sSH17Hrb48 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sSH17Hrb48 .card-title {
  color: #d90406;
}
.cid-uj36oFWXsn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uj36oFWXsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uj36oFWXsn .row {
    text-align: center;
  }
  .cid-uj36oFWXsn .row > div {
    margin: auto;
  }
  .cid-uj36oFWXsn .social-row {
    justify-content: center;
  }
}
.cid-uj36oFWXsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uj36oFWXsn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 0rem;
  }
}
.cid-uj36oFWXsn .mbr-text {
  color: #bbbbbb;
}
.cid-uj36oFWXsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uj36oFWXsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uj36oFWXsn .copyright {
  color: #e43f3f;
}
.cid-sPkgA0LuJx .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-sPkgA0LuJx .display-2 {
  font-size: 2rem;
}
.cid-sPkgA0LuJx .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-sPkgA0LuJx .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sPkgA0LuJx .dropdown-item:hover {
    color: #232323 !important;
  }
  .cid-sPkgA0LuJx .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-sPkgA0LuJx.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPkgA0LuJx.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sPkgA0LuJx.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sPkgA0LuJx.collapsed .icons-menu {
    margin: auto;
  }
  .cid-sPkgA0LuJx .navbar .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-logo img {
    height: 3.0rem !important;
  }
  .cid-sPkgA0LuJx .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sPkgA0LuJx .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sPkgA0LuJx .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPkgA0LuJx.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-sPkgA0LuJx .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sPkgA0LuJx ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: #efefef;
    text-align: center;
  }
  .cid-sPkgA0LuJx .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPkgA0LuJx .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sPkgA0LuJx .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 330px;
  }
}
@media (min-width: 576px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
.cid-sPkgA0LuJx .container {
  width: 100%;
  max-width: 1220px !important;
  display: flex;
  margin: auto;
}
.cid-sPkgA0LuJx .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #f3efef !important;
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-brand {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sPkgA0LuJx .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b19898;
    box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
    background: rgba(243, 239, 239, 0.95);
    border-bottom-width: 0px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sPkgA0LuJx .navbar .dropdown-item:hover {
    color: #212529 !important;
    background: #eae3e3 !important;
  }
}
.cid-sPkgA0LuJx .navbar.opened {
  transition: all .3s;
}
.cid-sPkgA0LuJx .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-sPkgA0LuJx .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sPkgA0LuJx .nav-link:hover {
  color: #232323 !important;
  background: none !important;
}
.cid-sPkgA0LuJx .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 2px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-sPkgA0LuJx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: right;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sPkgA0LuJx .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 0.1em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-sPkgA0LuJx .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-sPkgA0LuJx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sPkgA0LuJx .navbar-caption {
  padding-right: 1rem;
}
.cid-sPkgA0LuJx .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown-menu,
  .cid-sPkgA0LuJx .navbar.opened {
    background: #ffffff !important;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown-menu,
  .cid-sPkgA0LuJx .navbar.opened {
    background: #f3efef !important;
  }
}
.cid-sPkgA0LuJx .nav-item:focus,
.cid-sPkgA0LuJx .nav-link:focus {
  outline: none;
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 600;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-sPkgA0LuJx .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-sPkgA0LuJx .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-sPkgA0LuJx .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-sPkgA0LuJx .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sPkgA0LuJx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPkgA0LuJx .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: #efefef;
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #232323 !important;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-sPkgA0LuJx .navbar-brand {
  min-height: 40px;
  -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;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sPkgA0LuJx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPkgA0LuJx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPkgA0LuJx .dropdown-item.active,
.cid-sPkgA0LuJx .dropdown-item:active {
  background-color: transparent;
}
.cid-sPkgA0LuJx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 600;
}
.cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPkgA0LuJx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-sPkgA0LuJx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPkgA0LuJx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPkgA0LuJx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar-buttons {
    text-align: right;
    min-width: 150px;
    width: 150px;
  }
}
.cid-sPkgA0LuJx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e43f3f;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPkgA0LuJx .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-sPkgA0LuJx a.nav-link {
  display: flex;
  font-weight: 600;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sPkgA0LuJx .navbar-brand span {
  display: inline-block;
}
.cid-sPkgA0LuJx .navbar-brand a {
  font-weight: 600;
}
.cid-sPkgA0LuJx .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-sPkgA0LuJx .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 600;
}
.cid-sPkgA0LuJx .btn .mbr-iconfont,
.cid-sPkgA0LuJx .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-sPkgA0LuJx .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #232323;
  border-top-color: #232323;
  background: #f52110 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 3.5px;
  padding-bottom: 7px;
  color: #232323;
}
.cid-sPkgA0LuJx .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-sPkgA0LuJx .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-sPkgA0LuJx .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-sPkgA0LuJx img {
  width: auto;
}
.cid-sPkgA0LuJx .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-sPkgA0LuJx .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sPkgA0LuJx .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sPkgA0LuJx a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-sPkgA0LuJx .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0px;
}
.cid-sPkgA0LuJx .socicon {
  line-height: inherit;
}
.cid-sPkgA0LuJx .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sSz9Mtasgo {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSz9Mtasgo .mbr-section-title {
  text-align: left;
}
.cid-sSz9Mtasgo .card-title,
.cid-sSz9Mtasgo .card-box {
  color: #e43f3f;
}
.cid-sSz9Mtasgo .mbr-text,
.cid-sSz9Mtasgo .link {
  color: #000000;
}
.cid-sSz9Mtasgo .mbr-section-subtitle {
  text-align: left;
}
.cid-sSmiFaHJkB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sSmiFaHJkB .mbr-text {
  color: #000000;
}
.cid-uj36oFWXsn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uj36oFWXsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uj36oFWXsn .row {
    text-align: center;
  }
  .cid-uj36oFWXsn .row > div {
    margin: auto;
  }
  .cid-uj36oFWXsn .social-row {
    justify-content: center;
  }
}
.cid-uj36oFWXsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uj36oFWXsn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 0rem;
  }
}
.cid-uj36oFWXsn .mbr-text {
  color: #bbbbbb;
}
.cid-uj36oFWXsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uj36oFWXsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uj36oFWXsn .copyright {
  color: #e43f3f;
}
.cid-tdwsCLL41E .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-tdwsCLL41E .display-2 {
  font-size: 2rem;
}
.cid-tdwsCLL41E .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tdwsCLL41E .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-tdwsCLL41E .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-tdwsCLL41E .dropdown-item:hover {
    color: #232323 !important;
  }
  .cid-tdwsCLL41E .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-tdwsCLL41E.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdwsCLL41E.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdwsCLL41E.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdwsCLL41E.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdwsCLL41E.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tdwsCLL41E.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdwsCLL41E.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tdwsCLL41E.collapsed .icons-menu {
    margin: auto;
  }
  .cid-tdwsCLL41E .navbar .topLineDivSettings {
    display: none;
  }
  .cid-tdwsCLL41E .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-tdwsCLL41E .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-tdwsCLL41E .navbar.navbar-short .navbar-logo img {
    height: 3.0rem !important;
  }
  .cid-tdwsCLL41E .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-tdwsCLL41E .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tdwsCLL41E .nav-item .nav-link::before {
    display: none;
  }
  .cid-tdwsCLL41E.opened .dropdown-menu {
    top: 0;
  }
  .cid-tdwsCLL41E .dropdown-menu {
    top: 0;
  }
  .cid-tdwsCLL41E .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tdwsCLL41E .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tdwsCLL41E .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-tdwsCLL41E .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tdwsCLL41E ul.navbar-nav li {
    margin: auto;
  }
  .cid-tdwsCLL41E .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: #efefef;
    text-align: center;
  }
  .cid-tdwsCLL41E .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tdwsCLL41E .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tdwsCLL41E .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-tdwsCLL41E .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 330px;
  }
}
@media (min-width: 576px) {
  .cid-tdwsCLL41E .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .cid-tdwsCLL41E .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-tdwsCLL41E .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
.cid-tdwsCLL41E .container {
  width: 100%;
  max-width: 1220px !important;
  display: flex;
  margin: auto;
}
.cid-tdwsCLL41E .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #f3efef !important;
}
@media (min-width: 992px) {
  .cid-tdwsCLL41E .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-tdwsCLL41E .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-tdwsCLL41E .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-tdwsCLL41E .navbar.navbar-short .navbar-brand {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-tdwsCLL41E .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b19898;
    box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
    background: rgba(243, 239, 239, 0.95);
    border-bottom-width: 0px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-tdwsCLL41E .navbar .dropdown-item:hover {
    color: #212529 !important;
    background: #eae3e3 !important;
  }
}
.cid-tdwsCLL41E .navbar.opened {
  transition: all .3s;
}
.cid-tdwsCLL41E .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-tdwsCLL41E .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-tdwsCLL41E .nav-link:hover {
  color: #232323 !important;
  background: none !important;
}
.cid-tdwsCLL41E .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 2px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-tdwsCLL41E .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tdwsCLL41E .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-tdwsCLL41E .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: right;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-tdwsCLL41E .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tdwsCLL41E .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tdwsCLL41E .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tdwsCLL41E .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 0.1em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .cid-tdwsCLL41E .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-tdwsCLL41E .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-tdwsCLL41E .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-tdwsCLL41E .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tdwsCLL41E .navbar-caption {
  padding-right: 1rem;
}
.cid-tdwsCLL41E .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-tdwsCLL41E .dropdown-menu,
  .cid-tdwsCLL41E .navbar.opened {
    background: #ffffff !important;
  }
}
@media (min-width: 992px) {
  .cid-tdwsCLL41E .dropdown-menu,
  .cid-tdwsCLL41E .navbar.opened {
    background: #f3efef !important;
  }
}
.cid-tdwsCLL41E .nav-item:focus,
.cid-tdwsCLL41E .nav-link:focus {
  outline: none;
}
.cid-tdwsCLL41E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 600;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-tdwsCLL41E .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-tdwsCLL41E .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-tdwsCLL41E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tdwsCLL41E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-tdwsCLL41E .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-tdwsCLL41E .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-tdwsCLL41E .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-tdwsCLL41E .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tdwsCLL41E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tdwsCLL41E .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-tdwsCLL41E .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-tdwsCLL41E .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: #efefef;
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-tdwsCLL41E .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #232323 !important;
}
.cid-tdwsCLL41E .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-tdwsCLL41E .navbar-brand {
  min-height: 40px;
  -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;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tdwsCLL41E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdwsCLL41E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdwsCLL41E .dropdown-item.active,
.cid-tdwsCLL41E .dropdown-item:active {
  background-color: transparent;
}
.cid-tdwsCLL41E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 600;
}
.cid-tdwsCLL41E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tdwsCLL41E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tdwsCLL41E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-tdwsCLL41E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdwsCLL41E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdwsCLL41E ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tdwsCLL41E .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-tdwsCLL41E .navbar-buttons {
    text-align: right;
    min-width: 150px;
    width: 150px;
  }
}
.cid-tdwsCLL41E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tdwsCLL41E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e43f3f;
}
.cid-tdwsCLL41E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tdwsCLL41E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tdwsCLL41E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tdwsCLL41E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tdwsCLL41E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdwsCLL41E nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tdwsCLL41E nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tdwsCLL41E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdwsCLL41E .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-tdwsCLL41E a.nav-link {
  display: flex;
  font-weight: 600;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tdwsCLL41E .navbar-brand span {
  display: inline-block;
}
.cid-tdwsCLL41E .navbar-brand a {
  font-weight: 600;
}
.cid-tdwsCLL41E .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-tdwsCLL41E .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 600;
}
.cid-tdwsCLL41E .btn .mbr-iconfont,
.cid-tdwsCLL41E .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-tdwsCLL41E .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #232323;
  border-top-color: #232323;
  background: #f52110 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 3.5px;
  padding-bottom: 7px;
  color: #232323;
}
.cid-tdwsCLL41E .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-tdwsCLL41E .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-tdwsCLL41E .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-tdwsCLL41E img {
  width: auto;
}
.cid-tdwsCLL41E .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-tdwsCLL41E .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-tdwsCLL41E .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-tdwsCLL41E a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-tdwsCLL41E .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0px;
}
.cid-tdwsCLL41E .socicon {
  line-height: inherit;
}
.cid-tdwsCLL41E .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-tdwtICWK1o {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tdwtICWK1o .mbr-text,
.cid-tdwtICWK1o .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tdwtICWK1o H1 {
  color: #d90406;
  text-align: left;
}
.cid-tdwtICWK1o H3 {
  color: #000000;
  text-align: left;
}
.cid-uj36oFWXsn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uj36oFWXsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uj36oFWXsn .row {
    text-align: center;
  }
  .cid-uj36oFWXsn .row > div {
    margin: auto;
  }
  .cid-uj36oFWXsn .social-row {
    justify-content: center;
  }
}
.cid-uj36oFWXsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uj36oFWXsn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 0rem;
  }
}
.cid-uj36oFWXsn .mbr-text {
  color: #bbbbbb;
}
.cid-uj36oFWXsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uj36oFWXsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uj36oFWXsn .copyright {
  color: #e43f3f;
}
.cid-sPkgA0LuJx .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-sPkgA0LuJx .display-2 {
  font-size: 2rem;
}
.cid-sPkgA0LuJx .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-sPkgA0LuJx .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sPkgA0LuJx .dropdown-item:hover {
    color: #232323 !important;
  }
  .cid-sPkgA0LuJx .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-sPkgA0LuJx.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPkgA0LuJx.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sPkgA0LuJx.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sPkgA0LuJx.collapsed .icons-menu {
    margin: auto;
  }
  .cid-sPkgA0LuJx .navbar .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-logo img {
    height: 3.0rem !important;
  }
  .cid-sPkgA0LuJx .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sPkgA0LuJx .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sPkgA0LuJx .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPkgA0LuJx.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-sPkgA0LuJx .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sPkgA0LuJx ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: #efefef;
    text-align: center;
  }
  .cid-sPkgA0LuJx .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPkgA0LuJx .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sPkgA0LuJx .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 330px;
  }
}
@media (min-width: 576px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
.cid-sPkgA0LuJx .container {
  width: 100%;
  max-width: 1220px !important;
  display: flex;
  margin: auto;
}
.cid-sPkgA0LuJx .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #f3efef !important;
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-brand {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sPkgA0LuJx .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b19898;
    box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
    background: rgba(243, 239, 239, 0.95);
    border-bottom-width: 0px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sPkgA0LuJx .navbar .dropdown-item:hover {
    color: #212529 !important;
    background: #eae3e3 !important;
  }
}
.cid-sPkgA0LuJx .navbar.opened {
  transition: all .3s;
}
.cid-sPkgA0LuJx .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-sPkgA0LuJx .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sPkgA0LuJx .nav-link:hover {
  color: #232323 !important;
  background: none !important;
}
.cid-sPkgA0LuJx .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 2px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-sPkgA0LuJx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: right;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sPkgA0LuJx .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 0.1em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-sPkgA0LuJx .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-sPkgA0LuJx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sPkgA0LuJx .navbar-caption {
  padding-right: 1rem;
}
.cid-sPkgA0LuJx .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown-menu,
  .cid-sPkgA0LuJx .navbar.opened {
    background: #ffffff !important;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown-menu,
  .cid-sPkgA0LuJx .navbar.opened {
    background: #f3efef !important;
  }
}
.cid-sPkgA0LuJx .nav-item:focus,
.cid-sPkgA0LuJx .nav-link:focus {
  outline: none;
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 600;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-sPkgA0LuJx .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-sPkgA0LuJx .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-sPkgA0LuJx .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-sPkgA0LuJx .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sPkgA0LuJx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPkgA0LuJx .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: #efefef;
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #232323 !important;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-sPkgA0LuJx .navbar-brand {
  min-height: 40px;
  -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;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sPkgA0LuJx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPkgA0LuJx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPkgA0LuJx .dropdown-item.active,
.cid-sPkgA0LuJx .dropdown-item:active {
  background-color: transparent;
}
.cid-sPkgA0LuJx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 600;
}
.cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPkgA0LuJx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-sPkgA0LuJx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPkgA0LuJx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPkgA0LuJx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar-buttons {
    text-align: right;
    min-width: 150px;
    width: 150px;
  }
}
.cid-sPkgA0LuJx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e43f3f;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPkgA0LuJx .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-sPkgA0LuJx a.nav-link {
  display: flex;
  font-weight: 600;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sPkgA0LuJx .navbar-brand span {
  display: inline-block;
}
.cid-sPkgA0LuJx .navbar-brand a {
  font-weight: 600;
}
.cid-sPkgA0LuJx .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-sPkgA0LuJx .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 600;
}
.cid-sPkgA0LuJx .btn .mbr-iconfont,
.cid-sPkgA0LuJx .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-sPkgA0LuJx .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #232323;
  border-top-color: #232323;
  background: #f52110 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 3.5px;
  padding-bottom: 7px;
  color: #232323;
}
.cid-sPkgA0LuJx .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-sPkgA0LuJx .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-sPkgA0LuJx .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-sPkgA0LuJx img {
  width: auto;
}
.cid-sPkgA0LuJx .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-sPkgA0LuJx .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sPkgA0LuJx .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sPkgA0LuJx a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-sPkgA0LuJx .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0px;
}
.cid-sPkgA0LuJx .socicon {
  line-height: inherit;
}
.cid-sPkgA0LuJx .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-tdufDvFzxW {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tdufDvFzxW .mbr-text,
.cid-tdufDvFzxW .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tdufDvFzxW H1 {
  color: #d90406;
  text-align: left;
}
.cid-tdufDvFzxW H3 {
  color: #000000;
  text-align: left;
}
.cid-termtAyFse {
  background: #f9f0f0;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-termtAyFse .image-block {
  margin: auto;
}
.cid-termtAyFse figcaption {
  position: relative;
}
.cid-termtAyFse figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-termtAyFse .image-block {
    width: 100% !important;
  }
}
.cid-termtAyFse DIV {
  color: #0f7699;
}
.cid-tdEh7JkchL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tdEh7JkchL .mbr-text,
.cid-tdEh7JkchL .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tdEh7JkchL H1 {
  color: #212529;
  text-align: left;
}
.cid-tdueaBZCZS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fceaea;
}
.cid-tdueaBZCZS .mbr-text,
.cid-tdueaBZCZS .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tdueaBZCZS H1 {
  color: #212529;
  text-align: left;
}
.cid-tdZnDo5WJm {
  background: #fafafa;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-tdZnDo5WJm .image-block {
  margin: auto;
}
.cid-tdZnDo5WJm figcaption {
  position: relative;
}
.cid-tdZnDo5WJm figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tdZnDo5WJm .image-block {
    width: 100% !important;
  }
}
.cid-tdZnDo5WJm DIV {
  color: #0f7699;
}
.cid-tduefZR77H {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fceaea;
}
.cid-tduefZR77H .mbr-text,
.cid-tduefZR77H .mbr-section-btn {
  text-align: left;
  color: #212529;
}
.cid-tduefZR77H H1 {
  color: #212529;
  text-align: left;
}
.cid-tduehBIHMH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tduehBIHMH .mbr-text,
.cid-tduehBIHMH .mbr-section-btn {
  text-align: left;
  color: #212529;
}
.cid-tduehBIHMH H1 {
  color: #212529;
  text-align: left;
}
.cid-tfZPYN6MSD {
  background: #f9f0f0;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-tfZPYN6MSD .image-block {
  margin: auto;
}
.cid-tfZPYN6MSD figcaption {
  position: relative;
}
.cid-tfZPYN6MSD figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tfZPYN6MSD .image-block {
    width: 100% !important;
  }
}
.cid-tfZPYN6MSD DIV {
  color: #0f7699;
}
.cid-uj36oFWXsn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uj36oFWXsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uj36oFWXsn .row {
    text-align: center;
  }
  .cid-uj36oFWXsn .row > div {
    margin: auto;
  }
  .cid-uj36oFWXsn .social-row {
    justify-content: center;
  }
}
.cid-uj36oFWXsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uj36oFWXsn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 0rem;
  }
}
.cid-uj36oFWXsn .mbr-text {
  color: #bbbbbb;
}
.cid-uj36oFWXsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uj36oFWXsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uj36oFWXsn .copyright {
  color: #e43f3f;
}
.cid-sPkgA0LuJx .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-sPkgA0LuJx .display-2 {
  font-size: 2rem;
}
.cid-sPkgA0LuJx .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-sPkgA0LuJx .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sPkgA0LuJx .dropdown-item:hover {
    color: #232323 !important;
  }
  .cid-sPkgA0LuJx .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-sPkgA0LuJx.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPkgA0LuJx.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sPkgA0LuJx.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPkgA0LuJx.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sPkgA0LuJx.collapsed .icons-menu {
    margin: auto;
  }
  .cid-sPkgA0LuJx .navbar .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-logo img {
    height: 3.0rem !important;
  }
  .cid-sPkgA0LuJx .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sPkgA0LuJx .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sPkgA0LuJx .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPkgA0LuJx.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx .dropdown-menu {
    top: 0;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-sPkgA0LuJx .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sPkgA0LuJx ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPkgA0LuJx .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: #efefef;
    text-align: center;
  }
  .cid-sPkgA0LuJx .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPkgA0LuJx .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sPkgA0LuJx .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 330px;
  }
}
@media (min-width: 576px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-sPkgA0LuJx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
.cid-sPkgA0LuJx .container {
  width: 100%;
  max-width: 1220px !important;
  display: flex;
  margin: auto;
}
.cid-sPkgA0LuJx .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #f3efef !important;
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-sPkgA0LuJx .navbar.navbar-short .navbar-brand {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sPkgA0LuJx .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b19898;
    box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
    background: rgba(243, 239, 239, 0.95);
    border-bottom-width: 0px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sPkgA0LuJx .navbar .dropdown-item:hover {
    color: #212529 !important;
    background: #eae3e3 !important;
  }
}
.cid-sPkgA0LuJx .navbar.opened {
  transition: all .3s;
}
.cid-sPkgA0LuJx .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-sPkgA0LuJx .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sPkgA0LuJx .nav-link:hover {
  color: #232323 !important;
  background: none !important;
}
.cid-sPkgA0LuJx .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 2px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-sPkgA0LuJx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: right;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sPkgA0LuJx .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 0.1em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-sPkgA0LuJx .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-sPkgA0LuJx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sPkgA0LuJx .navbar-caption {
  padding-right: 1rem;
}
.cid-sPkgA0LuJx .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown-menu,
  .cid-sPkgA0LuJx .navbar.opened {
    background: #ffffff !important;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown-menu,
  .cid-sPkgA0LuJx .navbar.opened {
    background: #f3efef !important;
  }
}
.cid-sPkgA0LuJx .nav-item:focus,
.cid-sPkgA0LuJx .nav-link:focus {
  outline: none;
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 600;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sPkgA0LuJx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-sPkgA0LuJx .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-sPkgA0LuJx .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-sPkgA0LuJx .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-sPkgA0LuJx .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sPkgA0LuJx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPkgA0LuJx .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: #efefef;
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #232323 !important;
}
.cid-sPkgA0LuJx .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-sPkgA0LuJx .navbar-brand {
  min-height: 40px;
  -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;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sPkgA0LuJx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPkgA0LuJx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPkgA0LuJx .dropdown-item.active,
.cid-sPkgA0LuJx .dropdown-item:active {
  background-color: transparent;
}
.cid-sPkgA0LuJx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 600;
}
.cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPkgA0LuJx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPkgA0LuJx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-sPkgA0LuJx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPkgA0LuJx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPkgA0LuJx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPkgA0LuJx .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sPkgA0LuJx .navbar-buttons {
    text-align: right;
    min-width: 150px;
    width: 150px;
  }
}
.cid-sPkgA0LuJx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e43f3f;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sPkgA0LuJx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sPkgA0LuJx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sPkgA0LuJx .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-sPkgA0LuJx a.nav-link {
  display: flex;
  font-weight: 600;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sPkgA0LuJx .navbar-brand span {
  display: inline-block;
}
.cid-sPkgA0LuJx .navbar-brand a {
  font-weight: 600;
}
.cid-sPkgA0LuJx .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-sPkgA0LuJx .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 600;
}
.cid-sPkgA0LuJx .btn .mbr-iconfont,
.cid-sPkgA0LuJx .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-sPkgA0LuJx .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #232323;
  border-top-color: #232323;
  background: #f52110 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 3.5px;
  padding-bottom: 7px;
  color: #232323;
}
.cid-sPkgA0LuJx .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-sPkgA0LuJx .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-sPkgA0LuJx .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-sPkgA0LuJx img {
  width: auto;
}
.cid-sPkgA0LuJx .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-sPkgA0LuJx .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sPkgA0LuJx .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sPkgA0LuJx a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-sPkgA0LuJx .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0px;
}
.cid-sPkgA0LuJx .socicon {
  line-height: inherit;
}
.cid-sPkgA0LuJx .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-tdufDvFzxW {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tdufDvFzxW .mbr-text,
.cid-tdufDvFzxW .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tdufDvFzxW H1 {
  color: #d90406;
  text-align: left;
}
.cid-tdufDvFzxW H3 {
  color: #000000;
  text-align: left;
}
.cid-vquApsNuZR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fceaea;
}
.cid-vquApsNuZR .mbr-text,
.cid-vquApsNuZR .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-vquApsNuZR H1 {
  color: #212529;
  text-align: left;
}
.cid-tdEh7JkchL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tdEh7JkchL .mbr-text,
.cid-tdEh7JkchL .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tdEh7JkchL H1 {
  color: #212529;
  text-align: left;
}
.cid-tdueaBZCZS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fceaea;
}
.cid-tdueaBZCZS .mbr-text,
.cid-tdueaBZCZS .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tdueaBZCZS H1 {
  color: #212529;
  text-align: left;
}
.cid-tduefZR77H {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tduefZR77H .mbr-text,
.cid-tduefZR77H .mbr-section-btn {
  text-align: left;
  color: #212529;
}
.cid-tduefZR77H H1 {
  color: #212529;
  text-align: left;
}
.cid-tduehBIHMH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fceaea;
}
.cid-tduehBIHMH .mbr-text,
.cid-tduehBIHMH .mbr-section-btn {
  text-align: left;
  color: #212529;
}
.cid-tduehBIHMH H1 {
  color: #212529;
  text-align: left;
}
.cid-uj36oFWXsn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uj36oFWXsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uj36oFWXsn .row {
    text-align: center;
  }
  .cid-uj36oFWXsn .row > div {
    margin: auto;
  }
  .cid-uj36oFWXsn .social-row {
    justify-content: center;
  }
}
.cid-uj36oFWXsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uj36oFWXsn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 0rem;
  }
}
.cid-uj36oFWXsn .mbr-text {
  color: #bbbbbb;
}
.cid-uj36oFWXsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uj36oFWXsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uj36oFWXsn .copyright {
  color: #e43f3f;
}
.cid-sQd7PhTHgY .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-sQd7PhTHgY .display-2 {
  font-size: 2rem;
}
.cid-sQd7PhTHgY .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-sQd7PhTHgY .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sQd7PhTHgY .dropdown-item:hover {
    color: #232323 !important;
  }
  .cid-sQd7PhTHgY .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-sQd7PhTHgY.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQd7PhTHgY.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sQd7PhTHgY.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQd7PhTHgY.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sQd7PhTHgY.collapsed .icons-menu {
    margin: auto;
  }
  .cid-sQd7PhTHgY .navbar .topLineDivSettings {
    display: none;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .navbar-logo img {
    height: 3.0rem !important;
  }
  .cid-sQd7PhTHgY .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sQd7PhTHgY .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sQd7PhTHgY .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQd7PhTHgY.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQd7PhTHgY .dropdown-menu {
    top: 0;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-sQd7PhTHgY .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sQd7PhTHgY ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQd7PhTHgY .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: #efefef;
    text-align: center;
  }
  .cid-sQd7PhTHgY .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQd7PhTHgY .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQd7PhTHgY .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 330px;
  }
}
@media (min-width: 576px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-sQd7PhTHgY .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
.cid-sQd7PhTHgY .container {
  width: 100%;
  max-width: 1220px !important;
  display: flex;
  margin: auto;
}
.cid-sQd7PhTHgY .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #f3efef !important;
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .navbar.navbar-short {
    background: #f3efef !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-sQd7PhTHgY .navbar.navbar-short .navbar-brand {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .cid-sQd7PhTHgY .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b19898;
    box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
    background: rgba(243, 239, 239, 0.95);
    border-bottom-width: 0px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-sQd7PhTHgY .navbar .dropdown-item:hover {
    color: #212529 !important;
    background: #eae3e3 !important;
  }
}
.cid-sQd7PhTHgY .navbar.opened {
  transition: all .3s;
}
.cid-sQd7PhTHgY .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-sQd7PhTHgY .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sQd7PhTHgY .nav-link:hover {
  color: #232323 !important;
  background: none !important;
}
.cid-sQd7PhTHgY .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 2px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-sQd7PhTHgY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: right;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-sQd7PhTHgY .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.6rem !important;
  }
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 0.1em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-sQd7PhTHgY .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-sQd7PhTHgY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sQd7PhTHgY .navbar-caption {
  padding-right: 1rem;
}
.cid-sQd7PhTHgY .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .dropdown-menu,
  .cid-sQd7PhTHgY .navbar.opened {
    background: #ffffff !important;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .dropdown-menu,
  .cid-sQd7PhTHgY .navbar.opened {
    background: #f3efef !important;
  }
}
.cid-sQd7PhTHgY .nav-item:focus,
.cid-sQd7PhTHgY .nav-link:focus {
  outline: none;
}
.cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 600;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQd7PhTHgY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-sQd7PhTHgY .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-sQd7PhTHgY .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-sQd7PhTHgY .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-sQd7PhTHgY .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sQd7PhTHgY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQd7PhTHgY .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: #efefef;
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #232323 !important;
}
.cid-sQd7PhTHgY .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-sQd7PhTHgY .navbar-brand {
  min-height: 40px;
  -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;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sQd7PhTHgY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQd7PhTHgY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQd7PhTHgY .dropdown-item.active,
.cid-sQd7PhTHgY .dropdown-item:active {
  background-color: transparent;
}
.cid-sQd7PhTHgY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 600;
}
.cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQd7PhTHgY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQd7PhTHgY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-sQd7PhTHgY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQd7PhTHgY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQd7PhTHgY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sQd7PhTHgY .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sQd7PhTHgY .navbar-buttons {
    text-align: right;
    min-width: 150px;
    width: 150px;
  }
}
.cid-sQd7PhTHgY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e43f3f;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sQd7PhTHgY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sQd7PhTHgY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQd7PhTHgY .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-sQd7PhTHgY a.nav-link {
  display: flex;
  font-weight: 600;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQd7PhTHgY .navbar-brand span {
  display: inline-block;
}
.cid-sQd7PhTHgY .navbar-brand a {
  font-weight: 600;
}
.cid-sQd7PhTHgY .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-sQd7PhTHgY .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 600;
}
.cid-sQd7PhTHgY .btn .mbr-iconfont,
.cid-sQd7PhTHgY .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-sQd7PhTHgY .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #232323;
  border-top-color: #232323;
  background: #f52110 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 3.5px;
  padding-bottom: 7px;
  color: #232323;
}
.cid-sQd7PhTHgY .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-sQd7PhTHgY .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-sQd7PhTHgY .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-sQd7PhTHgY img {
  width: auto;
}
.cid-sQd7PhTHgY .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-sQd7PhTHgY .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sQd7PhTHgY .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-sQd7PhTHgY a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-sQd7PhTHgY .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0px;
}
.cid-sQd7PhTHgY .socicon {
  line-height: inherit;
}
.cid-sQd7PhTHgY .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sQHUiqSSxe {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sQHCVLxjvI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-sQHCVLxjvI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQHCVLxjvI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQHCVLxjvI .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQHCVLxjvI .mbr-text {
  text-align: left;
}
.cid-sQHCVLxjvI .mbr-section-title {
  text-align: right;
}
.cid-sQHCVLxjvI .mbr-description {
  text-align: center;
}
.cid-sQHCWBE3Mn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-sQHCWBE3Mn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQHCWBE3Mn .row {
  flex-direction: row-reverse;
}
.cid-sQHCWBE3Mn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQHCWBE3Mn .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQHCXnHocc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-sQHCXnHocc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQHCXnHocc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQHCXnHocc .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQHCXnHocc .mbr-text {
  text-align: left;
}
.cid-sQHCXnHocc .mbr-section-title {
  text-align: right;
}
.cid-sQHVLnJyt9 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #fceaea;
}
.cid-sQHVLnJyt9 .mbr-text {
  color: #000000;
}
.cid-sQHWfqRYPV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fceaea;
}
@media (max-width: 991px) {
  .cid-sQHWfqRYPV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQHWfqRYPV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQHWfqRYPV .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQHWfqRYPV .mbr-section-title {
  text-align: right;
}
.cid-sQHWfqRYPV .mbr-text {
  text-align: left;
}
.cid-sQHYdalEWo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-sQHYdalEWo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQHYdalEWo .row {
  flex-direction: row-reverse;
}
.cid-sQHYdalEWo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sQHYdalEWo .text-wrapper {
    padding: 2rem;
  }
}
.cid-sQHYTdS6K7 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #fceaea;
}
.cid-sQHYTdS6K7 .mbr-text {
  color: #000000;
}
.cid-sQfQxLULHT {
  background: #fceaea;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-sQfQxLULHT .image-block {
  margin: auto;
}
.cid-sQfQxLULHT figcaption {
  position: relative;
}
.cid-sQfQxLULHT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sQfQxLULHT .image-block {
    width: 100% !important;
  }
}
.cid-uj36oFWXsn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uj36oFWXsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uj36oFWXsn .row {
    text-align: center;
  }
  .cid-uj36oFWXsn .row > div {
    margin: auto;
  }
  .cid-uj36oFWXsn .social-row {
    justify-content: center;
  }
}
.cid-uj36oFWXsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uj36oFWXsn .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj36oFWXsn .list {
    margin-bottom: 0rem;
  }
}
.cid-uj36oFWXsn .mbr-text {
  color: #bbbbbb;
}
.cid-uj36oFWXsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uj36oFWXsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uj36oFWXsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uj36oFWXsn .copyright {
  color: #e43f3f;
}
