body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Comfortaa', display;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Comfortaa', display;
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2rem;
}
.display-4 {
  font-family: 'Comfortaa', display;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.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: #353535 !important;
}
.bg-success {
  background-color: #5b5b5b !important;
}
.bg-info {
  background-color: #bbbbbb !important;
}
.bg-warning {
  background-color: #bc3a3a !important;
}
.bg-danger {
  background-color: #ef3f35 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #353535 !important;
  border-color: #353535 !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: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ef3f35 !important;
  border-color: #ef3f35 !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: #be180f !important;
  border-color: #be180f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #be180f !important;
  border-color: #be180f !important;
}
.btn-info,
.btn-info:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-success,
.btn-success:active {
  background-color: #5b5b5b !important;
  border-color: #5b5b5b !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: #303030 !important;
  border-color: #303030 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #303030 !important;
  border-color: #303030 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #bc3a3a !important;
  border-color: #bc3a3a !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #7a2626 !important;
  border-color: #7a2626 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #7a2626 !important;
  border-color: #7a2626 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ef3f35 !important;
  border-color: #ef3f35 !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: #be180f !important;
  border-color: #be180f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #be180f !important;
  border-color: #be180f !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: #353535;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0a0a0a !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: #353535 !important;
  border-color: #353535 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ef3f35;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #be180f !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: #ef3f35 !important;
  border-color: #ef3f35 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #909090 !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: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5b5b5b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #303030 !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: #5b5b5b !important;
  border-color: #5b5b5b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bc3a3a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #7a2626 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #bc3a3a !important;
  border-color: #bc3a3a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ef3f35;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #be180f !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: #ef3f35 !important;
  border-color: #ef3f35 !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: #353535 !important;
}
.text-secondary {
  color: #ef3f35 !important;
}
.text-success {
  color: #5b5b5b !important;
}
.text-info {
  color: #bbbbbb !important;
}
.text-warning {
  color: #bc3a3a !important;
}
.text-danger {
  color: #ef3f35 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #020202 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b0170e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #282828 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #888888 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #6e2222 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b0170e !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: #353535;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #bbbbbb;
}
.alert-warning {
  background-color: #bc3a3a;
}
.alert-danger {
  background-color: #ef3f35;
}
.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: #353535;
  border-color: #353535;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #353535;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a8a8a8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #9b9b9b;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #df9797;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fef3f2;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #353535 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Comfortaa', display;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #353535;
}
/* 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: #353535;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #353535;
}
.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: #353535;
  border-bottom-color: #353535;
}
.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: #353535 !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: #ef3f35 !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='%23353535' %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-sZLxf6mSeu .trad {
  background-color: #6a747b !important;
  border-color: #6a747b !important;
  font-size: 0.6rem !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  line-height: 0.8rem !important;
}
.cid-sZLxf6mSeu .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-sZLxf6mSeu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sZLxf6mSeu a {
  font-style: normal;
}
.cid-sZLxf6mSeu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sZLxf6mSeu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sZLxf6mSeu .nav-item:focus,
.cid-sZLxf6mSeu .nav-link:focus {
  outline: none;
}
.cid-sZLxf6mSeu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sZLxf6mSeu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sZLxf6mSeu .menu-logo {
  margin-right: auto;
}
.cid-sZLxf6mSeu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sZLxf6mSeu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sZLxf6mSeu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sZLxf6mSeu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sZLxf6mSeu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sZLxf6mSeu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sZLxf6mSeu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sZLxf6mSeu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sZLxf6mSeu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sZLxf6mSeu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sZLxf6mSeu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sZLxf6mSeu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sZLxf6mSeu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZLxf6mSeu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sZLxf6mSeu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZLxf6mSeu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sZLxf6mSeu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sZLxf6mSeu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sZLxf6mSeu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sZLxf6mSeu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sZLxf6mSeu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sZLxf6mSeu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sZLxf6mSeu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sZLxf6mSeu button.navbar-toggler:focus {
  outline: none;
}
.cid-sZLxf6mSeu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ee3e34;
}
.cid-sZLxf6mSeu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sZLxf6mSeu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sZLxf6mSeu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sZLxf6mSeu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sZLxf6mSeu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sZLxf6mSeu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sZLxf6mSeu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sZLxf6mSeu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sZLxf6mSeu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sZLxf6mSeu .collapsed .btn {
  display: flex;
}
.cid-sZLxf6mSeu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sZLxf6mSeu .collapsed .navbar-collapse.collapsing,
.cid-sZLxf6mSeu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sZLxf6mSeu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sZLxf6mSeu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sZLxf6mSeu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sZLxf6mSeu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sZLxf6mSeu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sZLxf6mSeu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sZLxf6mSeu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sZLxf6mSeu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sZLxf6mSeu .collapsed button.navbar-toggler {
  display: block;
}
.cid-sZLxf6mSeu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sZLxf6mSeu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sZLxf6mSeu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sZLxf6mSeu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sZLxf6mSeu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sZLxf6mSeu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sZLxf6mSeu.navbar-expand {
    flex-direction: column;
  }
  .cid-sZLxf6mSeu img {
    height: 3.8rem !important;
  }
  .cid-sZLxf6mSeu .btn {
    display: flex;
  }
  .cid-sZLxf6mSeu button.navbar-toggler {
    display: block;
  }
  .cid-sZLxf6mSeu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sZLxf6mSeu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sZLxf6mSeu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sZLxf6mSeu .navbar-collapse.collapsing,
  .cid-sZLxf6mSeu .navbar-collapse.show {
    display: block !important;
  }
  .cid-sZLxf6mSeu .navbar-collapse.collapsing .navbar-nav,
  .cid-sZLxf6mSeu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sZLxf6mSeu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sZLxf6mSeu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sZLxf6mSeu .navbar-collapse.collapsing .navbar-buttons,
  .cid-sZLxf6mSeu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sZLxf6mSeu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sZLxf6mSeu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sZLxf6mSeu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sZLxf6mSeu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sZLxf6mSeu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sZLxf6mSeu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sZLxf6mSeu .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sZLxf6mSeu .navbar-collapse {
  flex-basis: auto;
}
.cid-sZLxf6mSeu .nav-link:hover,
.cid-sZLxf6mSeu .dropdown-item:hover {
  color: #ff1925 !important;
}
.cid-sZLtUam4L0 .mbr-overlay {
  background: #232323;
}
.cid-sZLtUam4L0 .mbr-section-title {
  letter-spacing: -1px;
  color: #ffffff;
}
.cid-sZLtUam4L0 .mbr-section-subtitle {
  color: #ee3e34;
}
.cid-t0HwHNWZn9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t0HwHNWZn9 h3 {
  text-align: center;
}
.cid-t0HwHNWZn9 .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-t0HwHNWZn9 .mbr-content-text {
  color: #767676;
  text-align: center;
}
.cid-t0HwHNWZn9 .panel-item {
  background: #ffffff;
}
.cid-t0HwHNWZn9 .card {
  word-wrap: break-word;
}
.cid-t0HwHNWZn9 .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-t0HwHNWZn9 .mbr-section-title {
  color: #ee3e34;
}
.cid-sZLtXAnHxm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ee3e34;
  background: linear-gradient(-45deg, rgba(238, 62, 52, 0.8), #b13029);
}
.cid-sZLtXAnHxm .title_block {
  margin-bottom: 50px;
}
.cid-sZLtXAnHxm .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sZLtXAnHxm .mbr-section-title {
  color: #ffffff;
}
.cid-sZLtXAnHxm .item:nth-child(1) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(53, 53, 53, 0.4);
  background-image: linear-gradient(40deg, #353535 0%, #686868 100%);
}
.cid-sZLtXAnHxm .item:nth-child(2) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(91, 91, 91, 0.4);
  background-image: linear-gradient(40deg, #5b5b5b 0%, #8e8e8e 100%);
}
.cid-sZLtXAnHxm .item:nth-child(3) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(188, 58, 58, 0.4);
  background-image: linear-gradient(40deg, #bc3a3a 0%, #d98383 100%);
}
.cid-sZLtXAnHxm .item:nth-child(4) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(239, 63, 53, 0.4);
  background-image: linear-gradient(40deg, #ef3f35 0%, #f69994 100%);
}
.cid-sZLtXAnHxm .item:nth-child(5) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(187, 187, 187, 0.4);
  background-image: linear-gradient(40deg, #bbbbbb 0%, #eeeeee 100%);
}
.cid-sZLtXAnHxm .item:nth-child(6) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(239, 63, 53, 0.4);
  background-image: linear-gradient(40deg, #ef3f35 0%, #f69994 100%);
}
.cid-sZLtXAnHxm .iconfont-wrapper {
  left: 50%;
  top: -35px;
  width: 70px;
  height: 70px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  transform: translateX(-50%);
}
.cid-sZLtXAnHxm .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 34px;
  line-height: 70px;
}
.cid-sZLtXAnHxm .card_wrap {
  padding: 45px;
  padding-top: 65px;
  margin-top: 60px;
  border-radius: 5px;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sZLtXAnHxm .card_wrap:hover {
  transform: translateY(-16px);
}
.cid-sZLtXAnHxm .card_title {
  margin-bottom: 20px;
  color: #ef3f35;
}
@media (max-width: 991px) {
  .cid-sZLtXAnHxm .title_block {
    margin-bottom: 30px;
  }
  .cid-sZLtXAnHxm .card_wrap {
    padding: 35px;
    padding-top: 65px;
  }
}
.cid-sZLC6PKSRF {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sZLC6PKSRF .mbr-section-subtitle {
  color: #232323;
}
.cid-sZLC6PKSRF H2 {
  text-align: center;
  color: #ee3e34;
}
.cid-sZLClQSvsi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sZLClQSvsi .mbr-text {
    text-align: center;
  }
}
.cid-sZLClQSvsi .container-fluid {
  padding: 0;
}
.cid-sZLClQSvsi .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-sZLClQSvsi img {
  height: 80%;
  object-fit: cover;
}
.cid-sZLClQSvsi .mbr-figure {
  height: 100%;
}
.cid-sZLClQSvsi .col-lg-6 {
  padding: 0;
}
.cid-sZLClQSvsi .row {
  margin: 0;
}
.cid-sZLClQSvsi H1 {
  color: #232323;
}
.cid-sZLClQSvsi H3 {
  color: #232323;
}
.cid-sZLClQSvsi .mbr-text,
.cid-sZLClQSvsi .mbr-section-btn {
  color: #232323;
}
.cid-sZLC9fNCJN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sZLC9fNCJN .mbr-text {
    text-align: center;
  }
}
.cid-sZLC9fNCJN .container-fluid {
  padding: 0;
}
.cid-sZLC9fNCJN .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-sZLC9fNCJN img {
  height: 100%;
  object-fit: cover;
}
.cid-sZLC9fNCJN .mbr-figure {
  height: 100%;
}
.cid-sZLC9fNCJN .col-lg-6 {
  padding: 0;
}
.cid-sZLC9fNCJN .row {
  margin: 0;
}
.cid-sZLoLkF7cw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sZLoLkF7cw .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sZLoLkF7cw .card:hover .card-wrapper .img-wrapper .mbr-section-btn {
  opacity: 1;
  transform: translateY(-50px);
}
.cid-sZLoLkF7cw .card .card-wrapper .img-wrapper {
  overflow: hidden;
  trasnition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.cid-sZLoLkF7cw .card .card-wrapper .img-wrapper img {
  width: 80%;
  transition: all 0.6s ease-in-out;
}
.cid-sZLoLkF7cw .card .card-wrapper .img-wrapper .mbr-section-btn {
  position: absolute;
  bottom: 150px;
  transition: all 0.2s ease-in-out 0s;
  opacity: 0;
  transform: translateY(100px);
  width: 100%;
}
.cid-sZLoLkF7cw .card .card-wrapper .img-wrapper .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  letter-spacing: 0;
}
.cid-sZLoLkF7cw .card .card-wrapper .card-box .card-title {
  color: #06182d;
  font-weight: 700;
  margin-bottom: 0;
}
.cid-sZLoLkF7cw .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-sZLoLkF7cw .card .card-wrapper .card-box .mbr-section-subtitle {
  color: #bbbbbb;
  letter-spacing: 0;
}
.cid-sZLoLkF7cw .card .card-wrapper .card-box .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sZLoLkF7cw .card .card-wrapper .card-box .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ee3e34;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sZLoLkF7cw .card .card-wrapper .card-box .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #b13029;
}
.cid-sZLoLkF7cw .card .card-wrapper .card-box .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ee3e34;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sZLoLkF7cw .card .card-wrapper .card-box .text-wrap .icons-wrap::before {
  height: 2px;
  width: 25%;
  top: 50%;
  right: 70%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ee3e34;
}
@media (max-width: 992px) {
  .cid-sZLoLkF7cw .card .card-wrapper .card-box .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sZLoLkF7cw .card .card-wrapper .card-box .text-wrap .icons-wrap::after {
  height: 2px;
  width: 25%;
  top: 50%;
  left: 70%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #ee3e34;
}
@media (max-width: 992px) {
  .cid-sZLoLkF7cw .card .card-wrapper .card-box .text-wrap .icons-wrap::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-sZLoLkF7cw .card .text-wrap {
    opacity: 1;
    padding: 1rem;
  }
}
.cid-sZLoLkF7cw .card .card-wrapper .card-box .card-title {
  color: #ee3e34;
}
.cid-sZLoNXSBIa {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sZLoNXSBIa .mbr-section-subtitle {
  color: #232323;
}
.cid-sZLoNXSBIa H2 {
  text-align: center;
  color: #ee3e34;
}
.cid-tbmscd8ENS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tbmscd8ENS .card-icon {
  font-size: 56px;
  color: #ed4266;
  transition: color 0.3s;
}
.cid-tbmscd8ENS .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-tbmscd8ENS .link-ico {
  font-size: 0.8rem;
  color: #232323;
  border: 2px solid #232323;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
}
.cid-tbmscd8ENS .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-tbmscd8ENS .card {
  padding: 0 !important;
}
.cid-tbmscd8ENS .card-wrapper {
  padding: 4rem;
  transition: background 0.3s;
}
.cid-tbmscd8ENS .card-wrapper:hover {
  background: #ed4266;
}
.cid-tbmscd8ENS .card-wrapper:hover .card-icon {
  color: #efefef;
}
.cid-tbmscd8ENS .card-wrapper:hover .line {
  background: #efefef;
}
.cid-tbmscd8ENS .card1 {
  background: #efefef;
}
.cid-tbmscd8ENS .card2 {
  background: #f4f4f4;
}
.cid-tbmscd8ENS .card3 {
  background: #f9f9f9;
}
.cid-tbmscd8ENS .card4 {
  background: #fefefe;
}
.cid-tbmscd8ENS .card5 {
  background: #ffffff;
}
.cid-tbmscd8ENS .card6 {
  background: #ffffff;
}
.cid-tbmscd8ENS .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 1400px) {
  .cid-tbmscd8ENS .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tbmscd8ENS .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-tbmscd8ENS .card-title,
.cid-tbmscd8ENS .card-ico,
.cid-tbmscd8ENS .line-wrap {
  color: #232323;
}
.cid-tbmscd8ENS .mbr-text,
.cid-tbmscd8ENS .card-link {
  color: #232323;
}
.cid-sZLuozOGtK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sZLuozOGtK .mbr-section-subtitle {
  color: #232323;
}
.cid-sZLuozOGtK H2 {
  text-align: center;
  color: #ee3e34;
}
.cid-sZLuozOGtK DIV {
  color: #ffffff;
}
.cid-sZMITuqPe9 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-sZMITuqPe9 .mbr-section-subtitle {
  color: #232323;
}
.cid-sZMITuqPe9 H2 {
  text-align: center;
  color: #000000;
}
.cid-sZMITuqPe9 DIV {
  color: #ffffff;
}
.cid-sZMIyJ37eO {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-sZMIyJ37eO .mbr-text {
  color: #767676;
  margin: auto 0;
}
.cid-sZMIyJ37eO .card-box {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sZMIyJ37eO .card-box {
    flex-direction: column;
  }
}
.cid-sZMIyJ37eO .mbr-section-subtitle {
  color: #767676;
}
.cid-sZMIyJ37eO .num {
  width: auto;
  display: block;
  padding-right: 1.5rem;
  white-space: nowrap;
  color: #ef3f35;
}
@media (max-width: 767px) {
  .cid-sZMIyJ37eO .num {
    padding-right: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-sZMIyJ37eO * {
    text-align: center !important;
  }
  .cid-sZMIyJ37eO .content-column {
    margin-bottom: 2rem;
  }
}
.cid-sZMIyJ37eO .card-text {
  color: #666666;
}
.cid-sZLur32xIo {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sZLur32xIo .card-wrapper {
  border-radius: 0;
  padding: 2rem;
}
.cid-sZLur32xIo .card-title {
  font-weight: 600;
}
.cid-sZLur32xIo .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-sZLur32xIo .card-img .icon {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  display: inline-block;
  line-height: 195px;
  text-align: center;
  transition: all .3s;
  color: #ee3e34;
  background-color: #ffffff;
  border: 2px solid #b13029;
}
.cid-sZLur32xIo .card-img .icon .mbr-iconfont {
  font-size: 120px;
  line-height: 1.59;
  color: #ee3e34;
}
.cid-sZLur32xIo .card-img .icon span {
  color: #ee3e34;
  font-size: 60px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 992px) {
  .cid-sZLur32xIo .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sZLur32xIo .card-img .icon {
    width: 145px;
    height: 145px;
    line-height: 145px;
  }
  .cid-sZLur32xIo .card-img .icon .mbr-iconfont {
    font-size: 70px;
    line-height: 2.01;
  }
  .cid-sZLur32xIo .card-img .icon span {
    font-size: 50px;
    line-height: 1em;
  }
}
.cid-tyn1qwmiPy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/p1100926-2000x1500.jpg");
}
.cid-tyn1qwmiPy .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tyn1qwmiPy .main .mbr-section-btn {
  text-align: right;
}
.cid-tyn1qwmiPy .btn {
  margin: 0 0 .5rem 0;
}
.cid-tyn1qwmiPy H2 {
  text-align: left;
}
.cid-tyn1qwmiPy H3 {
  text-align: left;
}
.cid-tynnDCz7od {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tynnDCz7od .mbr-section-title {
  color: #ff1925;
}
.cid-sZLoGhTnkL {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sZLoGhTnkL .line {
  background-color: #ff1925;
  color: #ff1925;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZLoGhTnkL .section-text {
  padding: 2rem 0;
  color: #ff1925;
  text-align: center;
}
.cid-sZLoGhTnkL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sZLoGhTnkL .inner-container {
    width: 100% !important;
  }
}
.cid-sZLoIch1wl {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sZLoIch1wl .listico {
  padding-right: 1rem;
  font-size: 1rem;
}
.cid-sZLoIch1wl .navbar-logo {
  width: 200px;
  margin-bottom: 10px;
}
.cid-sZLoIch1wl .mbr-text {
  color: #444;
}
.cid-sZLoIch1wl h5 {
  margin-bottom: 0;
}
.cid-sZLoIch1wl .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-sZLoIch1wl .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sZLoIch1wl .tips {
  height: 120px;
  width: 250px;
  border-radius: 6px;
  margin: 4px;
  display: inline-block;
}
.cid-sZLoIch1wl .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sZLoIch1wl .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sZLoIch1wl .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-sZLoIch1wl .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sZLoIch1wl .social-list a:hover {
  opacity: .4;
}
.cid-sZLoIch1wl .media-container-row > div {
  padding: 0px;
}
.cid-sZLoIch1wl .text2 {
  color: #ff1925;
  text-align: left;
}
.cid-sZLoIch1wl .group-title {
  text-align: left;
  color: #232323;
}
.cid-sZLoIch1wl .group-title SPAN {
  color: #ffffff;
}
.cid-sZLoIch1wl .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-sZLoIch1wl .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sZLoIch1wl .social-list,
  .cid-sZLoIch1wl .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sZLoIch1wl h3 {
    margin-bottom: 10px;
  }
  .cid-sZLoIch1wl .navbar-brand {
    text-align: center;
  }
}
.cid-sZLoIch1wl .links SPAN {
  color: #9e9e9e;
}
.cid-sZLoIch1wl .links,
.cid-sZLoIch1wl .navbar-brand {
  color: #424a4d;
}
.cid-sZLoIGtMRs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sZLoIGtMRs .container {
  max-width: 1150px;
}
.cid-sZLoIGtMRs .mbr-text {
  color: #bbbbbb;
}
.cid-sZLuzEYI9F.popup-builder {
  background-color: #ffffff;
}
.cid-sZLuzEYI9F.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sZLuzEYI9F.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sZLuzEYI9F .modal-content,
.cid-sZLuzEYI9F .modal-dialog {
  height: auto;
}
.cid-sZLuzEYI9F .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sZLuzEYI9F .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sZLuzEYI9F .form-wrapper .mbr-form .form-group,
  .cid-sZLuzEYI9F .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sZLuzEYI9F .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sZLuzEYI9F .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sZLuzEYI9F .mbr-text {
  text-align: center;
}
.cid-sZLuzEYI9F .pt-0 {
  padding-top: 0 !important;
}
.cid-sZLuzEYI9F .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sZLuzEYI9F .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sZLuzEYI9F .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sZLuzEYI9F .modal-open {
  overflow: hidden;
}
.cid-sZLuzEYI9F .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sZLuzEYI9F .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sZLuzEYI9F .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sZLuzEYI9F .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sZLuzEYI9F .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sZLuzEYI9F .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sZLuzEYI9F .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sZLuzEYI9F .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sZLuzEYI9F .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sZLuzEYI9F .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sZLuzEYI9F .modal-backdrop.fade {
  opacity: 0;
}
.cid-sZLuzEYI9F .modal-backdrop.show {
  opacity: .5;
}
.cid-sZLuzEYI9F .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sZLuzEYI9F .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sZLuzEYI9F .modal-header {
    padding: 1rem;
  }
}
.cid-sZLuzEYI9F .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sZLuzEYI9F .modal-header .close svg {
  fill: #353535;
}
.cid-sZLuzEYI9F .modal-header .close:hover {
  opacity: 1;
}
.cid-sZLuzEYI9F .modal-header .close:focus {
  outline: none;
}
.cid-sZLuzEYI9F .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sZLuzEYI9F .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sZLuzEYI9F .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sZLuzEYI9F .modal-body {
    padding: 1rem;
  }
}
.cid-sZLuzEYI9F .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sZLuzEYI9F .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sZLuzEYI9F .modal-footer {
    padding: 1rem;
  }
}
.cid-sZLuzEYI9F .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sZLuzEYI9F .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sZLuzEYI9F .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sZLuzEYI9F .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sZLuzEYI9F .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sZLuzEYI9F .modal-lg,
  .cid-sZLuzEYI9F .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sZLuzEYI9F .modal-xl {
    max-width: 1140px;
  }
}
.cid-sZLuzEYI9F .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sZLuzEYI9F .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sZLuzEYI9F .form-group {
  margin-bottom: 1rem;
}
.cid-sZLuzEYI9F .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sZLuzEYI9F .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sZLuzEYI9F .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sZLuzEYI9F .mbr-section-btn {
  margin: 0;
}
.cid-sZLuzEYI9F .mbr-section-btn .btn {
  margin: 0;
}
.cid-sZLxRuf57G.popup-builder {
  background-color: #ffffff;
}
.cid-sZLxRuf57G.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sZLxRuf57G.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sZLxRuf57G .modal-content,
.cid-sZLxRuf57G .modal-dialog {
  height: auto;
}
.cid-sZLxRuf57G .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sZLxRuf57G .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sZLxRuf57G .form-wrapper .mbr-form .form-group,
  .cid-sZLxRuf57G .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sZLxRuf57G .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sZLxRuf57G .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sZLxRuf57G .mbr-text {
  text-align: left;
}
.cid-sZLxRuf57G .pt-0 {
  padding-top: 0 !important;
}
.cid-sZLxRuf57G .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sZLxRuf57G .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sZLxRuf57G .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sZLxRuf57G .modal-open {
  overflow: hidden;
}
.cid-sZLxRuf57G .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sZLxRuf57G .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sZLxRuf57G .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sZLxRuf57G .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sZLxRuf57G .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sZLxRuf57G .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sZLxRuf57G .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sZLxRuf57G .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sZLxRuf57G .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sZLxRuf57G .modal-backdrop.fade {
  opacity: 0;
}
.cid-sZLxRuf57G .modal-backdrop.show {
  opacity: .5;
}
.cid-sZLxRuf57G .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sZLxRuf57G .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sZLxRuf57G .modal-header .close:hover {
  opacity: 1;
}
.cid-sZLxRuf57G .modal-header .close:focus {
  outline: none;
}
.cid-sZLxRuf57G .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sZLxRuf57G .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sZLxRuf57G .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sZLxRuf57G .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sZLxRuf57G .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sZLxRuf57G .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sZLxRuf57G .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sZLxRuf57G .modal-sm {
    max-width: 300px;
  }
  .cid-sZLxRuf57G .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sZLxRuf57G .modal-lg,
  .cid-sZLxRuf57G .modal-xl {
    max-width: 800px;
  }
  .cid-sZLxRuf57G .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sZLxRuf57G .modal-xl {
    max-width: 1140px;
  }
  .cid-sZLxRuf57G .container {
    max-width: 1140px;
  }
}
.cid-sZLxRuf57G .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sZLxRuf57G .container {
    max-width: 720px;
  }
}
.cid-sZLxRuf57G .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sZLxRuf57G .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sZLxRuf57G .form-group {
  margin-bottom: 1rem;
}
.cid-sZLxRuf57G .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sZLxRuf57G .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sZLxRuf57G .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
