.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #2a2e6d !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: #2a2e6d !important;
  border-color: #2a2e6d !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: #12142e !important;
  border-color: #12142e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #12142e !important;
  border-color: #12142e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d32432 !important;
  border-color: #d32432 !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: #891720 !important;
  border-color: #891720 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #891720 !important;
  border-color: #891720 !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: #2a2e6d;
  color: #2a2e6d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #12142e !important;
  background-color: transparent!important;
  border-color: #12142e !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2a2e6d !important;
  border-color: #2a2e6d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #d32432;
  color: #d32432;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #891720 !important;
  background-color: transparent!important;
  border-color: #891720 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #d32432 !important;
  border-color: #d32432 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  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: #148cca !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: #40b0bf;
  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: #2a747e !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: #ffe161;
  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: #ffd10a !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: #ff9966;
  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: #ff5f0f !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: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #2a2e6d !important;
}
.text-secondary {
  color: #d32432 !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: #0e0f23 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #7c151d !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: #2a2e6d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #2a2e6d;
  border-color: #2a2e6d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #2a2e6d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #585ebf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #2a2e6d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #2a2e6d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2a2e6d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2a2e6d;
}
.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: #2a2e6d;
  border-bottom-color: #2a2e6d;
}
.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: #2a2e6d !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: #d32432 !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='%232a2e6d' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-v16ZbdLFu0 .navbar {
  background: #2a2e6d;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-v16ZbdLFu0 .navbar-dropdown.bg-color.transparent.opened {
  background: #2a2e6d;
}
.cid-v16ZbdLFu0 a {
  font-style: normal;
}
.cid-v16ZbdLFu0 .show {
  overflow: visible;
}
.cid-v16ZbdLFu0 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-v16ZbdLFu0 .dropdown-item:active {
  background-color: transparent;
}
.cid-v16ZbdLFu0 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v16ZbdLFu0 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-v16ZbdLFu0 .nav-item:focus,
.cid-v16ZbdLFu0 .nav-link:focus {
  outline: none;
}
.cid-v16ZbdLFu0 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v16ZbdLFu0 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v16ZbdLFu0 .menu-logo {
  margin-right: auto;
}
.cid-v16ZbdLFu0 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v16ZbdLFu0 .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-v16ZbdLFu0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v16ZbdLFu0 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v16ZbdLFu0 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v16ZbdLFu0 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v16ZbdLFu0 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-v16ZbdLFu0 .dropdown .dropdown-menu {
  background: #2a2e6d;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v16ZbdLFu0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v16ZbdLFu0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v16ZbdLFu0 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v16ZbdLFu0 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v16ZbdLFu0 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v16ZbdLFu0 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v16ZbdLFu0 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v16ZbdLFu0 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v16ZbdLFu0 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v16ZbdLFu0 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v16ZbdLFu0 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-v16ZbdLFu0 button.navbar-toggler:focus {
  outline: none;
}
.cid-v16ZbdLFu0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1201d;
}
.cid-v16ZbdLFu0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v16ZbdLFu0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v16ZbdLFu0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v16ZbdLFu0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v16ZbdLFu0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v16ZbdLFu0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v16ZbdLFu0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v16ZbdLFu0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v16ZbdLFu0 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-v16ZbdLFu0 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v16ZbdLFu0 .collapsed .btn {
  display: -webkit-flex;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v16ZbdLFu0 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 93.4375vh;
  }
}
.cid-v16ZbdLFu0 .collapsed button.navbar-toggler {
  display: block;
}
.cid-v16ZbdLFu0 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v16ZbdLFu0 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v16ZbdLFu0 .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-v16ZbdLFu0 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v16ZbdLFu0 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v16ZbdLFu0 .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-v16ZbdLFu0.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v16ZbdLFu0 img {
    height: 3.8rem !important;
  }
  .cid-v16ZbdLFu0 .btn {
    display: -webkit-flex;
  }
  .cid-v16ZbdLFu0 button.navbar-toggler {
    display: block;
  }
  .cid-v16ZbdLFu0 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v16ZbdLFu0 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v16ZbdLFu0 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing,
  .cid-v16ZbdLFu0 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing .navbar-nav,
  .cid-v16ZbdLFu0 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v16ZbdLFu0 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-v16ZbdLFu0 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing .navbar-buttons,
  .cid-v16ZbdLFu0 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v16ZbdLFu0 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v16ZbdLFu0 .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-v16ZbdLFu0 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v16ZbdLFu0 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v16ZbdLFu0 .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: 767px) {
  .cid-v16ZbdLFu0 .nav-link {
    justify-content: start!important;
  }
  .cid-v16ZbdLFu0 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-v16ZbdLFu0 .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-v16ZbdLFu0 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-v16ZbdLFu0 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v16ZbdLFu0 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v16ZbdLFu0 .nav-link:hover,
.cid-v16ZbdLFu0 .dropdown-item:hover {
  color: #be0811 !important;
}
@media (min-width: 1500px) {
  .cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-v16ZbdLFu0 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sFzxmVl7J6 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/2.png-1920x1080.png");
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #ffffff;
}
.cid-sFzxmVl7J6 .mbr-section-title {
  color: #ffffff;
}
.cid-sFAZRnJnnI {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-sFAZRnJnnI .mbr-section-subtitle {
  color: #2a2e6d;
}
.cid-v16LwLZpK1 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-v16LwLZpK1 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-v16LwLZpK1 img {
  width: 100%;
}
.cid-v16LwLZpK1 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #2a2e6d;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-v16LwLZpK1 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-v16LwLZpK1 .mbr-section-subtitle {
  color: #d32432;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-v16LwLZpK1 .contents {
  margin-top: 36px;
}
.cid-v16LwLZpK1 .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-v16LwLZpK1 .mbr-section-btn {
  margin-top: 8px;
}
.cid-v16LwLZpK1 .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-v16LwLZpK1 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-v16LwLZpK1 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-v16LwLZpK1 .contents .mbr-text,
.cid-v16LwLZpK1 .mbr-section-btn {
  color: #be0811;
}
.cid-v16LwLZpK1 .main-title {
  color: #2a2e6d;
}
.cid-v1eV8SQjdZ {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #2a2e6d;
}
.cid-v1eV8SQjdZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1eV8SQjdZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1eV8SQjdZ .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-v1eV8SQjdZ .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v1eV8SQjdZ .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-v1eV8SQjdZ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v1eV8SQjdZ .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v1eV8SQjdZ .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v1eV8SQjdZ .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v1eV8SQjdZ .image-wrapper img {
    height: 350px;
  }
}
.cid-v1eV8SQjdZ .mbr-section-title {
  color: #ffffff;
}
.cid-v1eV8SQjdZ .mbr-text,
.cid-v1eV8SQjdZ .text-wrapper {
  color: #ffffff;
}
.cid-v1eV8SQjdZ .mbr-section-title,
.cid-v1eV8SQjdZ .mbr-section-btn {
  color: #d32432;
}
.cid-v5xeAxwr3U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2a2e6d;
}
.cid-v5xeAxwr3U .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5xeAxwr3U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5xeAxwr3U .mbr-text {
  color: #000000;
}
.cid-v5xeAxwr3U .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v5xeAxwr3U .item-wrapper {
  background: #ffffff;
  padding: 2.25rem 2.25rem 1rem 2.25rem;
}
@media (max-width: 767px) {
  .cid-v5xeAxwr3U .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v5xeAxwr3U .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
.cid-v5xeAxwr3U .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v5xeAxwr3U .main-button {
    margin-bottom: 2rem;
  }
}
.cid-v5xeAxwr3U .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-v5xeAxwr3U .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-v5xeAxwr3U .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #db0914;
  background-color: #db0914;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-v5xeAxwr3U .mbr-text UL {
  text-align: left;
}
.cid-v5xeAxwr3U .mbr-section-subtitle,
.cid-v5xeAxwr3U .main-button {
  color: #ffffff;
}
.cid-v5xeAxwr3U .mbr-section-title {
  color: #ffffff;
}
.cid-v16ThW8YwR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-v16ThW8YwR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16ThW8YwR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v16ThW8YwR .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-v16ThW8YwR .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v16ThW8YwR .embla__button--next,
.cid-v16ThW8YwR .embla__button--prev {
  display: flex;
}
.cid-v16ThW8YwR .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-v16ThW8YwR .embla__button {
    display: none;
  }
}
.cid-v16ThW8YwR .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v16ThW8YwR .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v16ThW8YwR .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v16ThW8YwR .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-v16ThW8YwR .embla__button {
    top: auto;
  }
}
.cid-v16ThW8YwR .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-v16ThW8YwR .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-v16ThW8YwR .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-v16ThW8YwR .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-v16ThW8YwR .embla {
  position: relative;
  width: 100%;
}
.cid-v16ThW8YwR .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v16ThW8YwR .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v16ThW8YwR .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v16ThW8YwR .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v16ThW8YwR .user_name {
  color: #2a2e6d;
}
.cid-v16ThW8YwR .user_desk {
  color: #d32432;
}
.cid-v16ThW8YwR H3 {
  color: #2a2e6d;
}
.cid-v16IrMEwHP {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #2a2e6d;
}
.cid-v16IrMEwHP p {
  line-height: 1.6;
}
.cid-v16IrMEwHP .card-box {
  width: -webkit-fill-available;
}
.cid-v16IrMEwHP .card-img {
  width: auto;
}
.cid-v16IrMEwHP .card-img span {
  font-size: 96px;
  padding: 0.6rem;
  margin: 0 1rem;
  border-radius: 8px;
}
.cid-v16IrMEwHP .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v16IrMEwHP .card-wrapper {
  display: flex;
  flex-direction: row;
}
.cid-v16IrMEwHP .card {
  height: 100%;
  margin: auto;
}
.cid-v16IrMEwHP img {
  width: 100%;
  heigth: auto;
}
.cid-v16IrMEwHP .card-title1 {
  color: #d32432;
  text-align: left;
}
.cid-v16IrMEwHP .mbr-text1 {
  color: #fafafa;
  text-align: left;
}
.cid-v16IrMEwHP .card-title2 {
  color: #d32432;
}
.cid-v16IrMEwHP .mbr-text2 {
  color: #fafafa;
  text-align: left;
}
@media (max-width: 576px) {
  .cid-v16IrMEwHP .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 0 0!important;
  }
  .cid-v16IrMEwHP .card-img {
    order: 1;
  }
  .cid-v16IrMEwHP .card-box {
    order: 2;
  }
}
.cid-v16MOarnHZ {
  padding-top: 120px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-v16MOarnHZ .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-v16MOarnHZ .align-center {
    text-align: center;
  }
  .cid-v16MOarnHZ .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v16MOarnHZ .block-btn {
  display: flex;
}
.cid-v16MOarnHZ .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-v16MOarnHZ h1 {
  margin-bottom: 0;
}
.cid-v16MOarnHZ .wrapper {
  background-color: #d32432;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-v16MOarnHZ .container {
    padding: 0 3rem;
  }
  .cid-v16MOarnHZ .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-v16MOarnHZ .block-btn {
    justify-content: center;
  }
  .cid-v16MOarnHZ .text-block {
    text-align: center;
  }
  .cid-v16MOarnHZ .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v16MOarnHZ .block-btn {
    justify-content: flex-end;
  }
  .cid-v16MOarnHZ .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-v16MOarnHZ .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-v16MOarnHZ .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-v16R5O90wR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v16R5O90wR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16R5O90wR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v16R5O90wR .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v16R5O90wR .container-fluid {
    padding: 0 20px;
  }
}
.cid-v16R5O90wR .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v16R5O90wR .container {
    padding: 0 20px;
  }
}
.cid-v16R5O90wR .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-v16R5O90wR .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v16R5O90wR .panel-group {
  padding: 0 70px;
  border-radius: 0;
}
@media (max-width: 768px) {
  .cid-v16R5O90wR .panel-group {
    padding: 0 20px;
  }
}
.cid-v16R5O90wR .panel-group .card {
  border-bottom: 1px solid #212121;
  border-radius: 0;
}
.cid-v16R5O90wR .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 40px 0;
}
.cid-v16R5O90wR .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-v16R5O90wR .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-v16R5O90wR .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
}
.cid-v16R5O90wR .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  color: #d32432;
  transition: all 0.3s ease-out;
}
.cid-v16R5O90wR .panel-group .card .panel-collapse {
  position: relative;
}
.cid-v16R5O90wR .panel-group .card .panel-collapse::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 4px;
  width: 0;
  background-color: #d32432;
  transition: all 1s ease-out;
}
.cid-v16R5O90wR .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 32px;
}
.cid-v16R5O90wR .panel-group .card .panel-collapse.show:before {
  width: 100%;
}
.cid-v16R5O90wR .mbr-section-title {
  color: #2a2e6d;
  text-align: center;
}
.cid-v16R5O90wR .panel-title-edit {
  color: #2a2e6d;
}
.cid-v16R5O90wR .panel-text {
  color: #2a2e6d;
}
.cid-v16VKZ6UJD {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #fafafa;
}
.cid-v16VKZ6UJD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16VKZ6UJD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v16VKZ6UJD .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-v16VKZ6UJD .container-fluid {
    padding: 0 20px;
  }
}
.cid-v16VKZ6UJD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v16VKZ6UJD .container {
    padding: 0 20px;
  }
}
.cid-v16VKZ6UJD .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-v16VKZ6UJD .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v16VKZ6UJD .panel-group {
  padding: 0 70px;
  border-radius: 0;
}
@media (max-width: 768px) {
  .cid-v16VKZ6UJD .panel-group {
    padding: 0 20px;
  }
}
.cid-v16VKZ6UJD .panel-group .card {
  border-bottom: 1px solid #212121;
  border-radius: 0;
}
.cid-v16VKZ6UJD .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 40px 0;
}
.cid-v16VKZ6UJD .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-v16VKZ6UJD .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-v16VKZ6UJD .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
}
.cid-v16VKZ6UJD .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  color: #d32432;
  transition: all 0.3s ease-out;
}
.cid-v16VKZ6UJD .panel-group .card .panel-collapse {
  position: relative;
}
.cid-v16VKZ6UJD .panel-group .card .panel-collapse::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 4px;
  width: 0;
  background-color: #d32432;
  transition: all 1s ease-out;
}
.cid-v16VKZ6UJD .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 32px;
}
.cid-v16VKZ6UJD .panel-group .card .panel-collapse.show:before {
  width: 100%;
}
.cid-v16VKZ6UJD .mbr-section-title {
  color: #2a2e6d;
  text-align: center;
}
.cid-v16VKZ6UJD .panel-title-edit {
  color: #2a2e6d;
}
.cid-v16VKZ6UJD .panel-text {
  color: #2a2e6d;
}
.cid-sFAxp7Y5iM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sFAxp7Y5iM .google-map {
  height: 30rem;
  position: relative;
}
.cid-sFAxp7Y5iM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFAxp7Y5iM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v16RDoBJyO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2a2e6d;
}
.cid-v16RDoBJyO .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-v16RDoBJyO .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v16RDoBJyO .col + .mbr-section-btn .btn,
.cid-v16RDoBJyO .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v16RDoBJyO .col + .mbr-section-btn .btn,
  .cid-v16RDoBJyO .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v16RDoBJyO .dragArea > *:nth-last-child(2).col,
  .cid-v16RDoBJyO .dragArea > *:nth-last-child(2).col-auto,
  .cid-v16RDoBJyO .col + .mbr-section-btn,
  .cid-v16RDoBJyO .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v16RDoBJyO .dragArea {
    flex-direction: column;
  }
}
.cid-v16RDoBJyO .btn-primary {
  border: 1px solid #2a2e6d !important;
}
.cid-v16RDoBJyO .btn-primary:hover {
  border: 1px solid #2a2e6d !important;
}
.cid-v16RDoBJyO .stripe {
  border-bottom: 1px solid #d32432;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v16RDoBJyO .form-group {
  max-width: 220px;
}
.cid-v16RDoBJyO .mbr-section-btn {
  padding-left: 0;
}
.cid-v16RDoBJyO .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v16RDoBJyO .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-v16RDoBJyO .mbr-text {
  color: #444;
}
.cid-v16RDoBJyO h5 {
  margin-bottom: 0;
}
.cid-v16RDoBJyO .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v16RDoBJyO .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v16RDoBJyO .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v16RDoBJyO .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v16RDoBJyO .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-v16RDoBJyO .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v16RDoBJyO .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v16RDoBJyO .social-list a:hover {
  opacity: 0.4;
}
.cid-v16RDoBJyO .media-container-row > div {
  padding: 0px;
}
.cid-v16RDoBJyO .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-v16RDoBJyO .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-v16RDoBJyO .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v16RDoBJyO .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v16RDoBJyO .social-list,
  .cid-v16RDoBJyO .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v16RDoBJyO h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v16RDoBJyO .form-group {
    max-width: 180px;
  }
}
.cid-v16RDoBJyO .links span {
  color: #9e9e9e;
}
.cid-v16RDoBJyO .logo-sub-title {
  text-align: center;
  color: #2a2e6d;
}
.cid-v16RDoBJyO .logo-title {
  text-align: center;
}
.cid-v16RDoBJyO .logo-title,
.cid-v16RDoBJyO .logo {
  color: #ffffff;
}
.cid-v17cg7M8zT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d32432;
  overflow: hidden;
}
.cid-v16YPnC5sh {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/estradas-1920x915.png");
}
.cid-v16YPnC5sh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16YPnC5sh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v16YPnC5sh .mbr-section-title {
  color: #ffffff;
}
.cid-v16YPnC5sh .mbr-text,
.cid-v16YPnC5sh .mbr-section-btn {
  color: #ffffff;
}
.cid-v16ZbdLFu0 .navbar {
  background: #2a2e6d;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-v16ZbdLFu0 .navbar-dropdown.bg-color.transparent.opened {
  background: #2a2e6d;
}
.cid-v16ZbdLFu0 a {
  font-style: normal;
}
.cid-v16ZbdLFu0 .show {
  overflow: visible;
}
.cid-v16ZbdLFu0 .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-v16ZbdLFu0 .dropdown-item:active {
  background-color: transparent;
}
.cid-v16ZbdLFu0 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v16ZbdLFu0 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-v16ZbdLFu0 .nav-item:focus,
.cid-v16ZbdLFu0 .nav-link:focus {
  outline: none;
}
.cid-v16ZbdLFu0 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v16ZbdLFu0 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v16ZbdLFu0 .menu-logo {
  margin-right: auto;
}
.cid-v16ZbdLFu0 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v16ZbdLFu0 .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-v16ZbdLFu0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v16ZbdLFu0 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v16ZbdLFu0 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v16ZbdLFu0 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v16ZbdLFu0 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-v16ZbdLFu0 .dropdown .dropdown-menu {
  background: #2a2e6d;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v16ZbdLFu0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v16ZbdLFu0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v16ZbdLFu0 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v16ZbdLFu0 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v16ZbdLFu0 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v16ZbdLFu0 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v16ZbdLFu0 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v16ZbdLFu0 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v16ZbdLFu0 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v16ZbdLFu0 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v16ZbdLFu0 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v16ZbdLFu0 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-v16ZbdLFu0 button.navbar-toggler:focus {
  outline: none;
}
.cid-v16ZbdLFu0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1201d;
}
.cid-v16ZbdLFu0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v16ZbdLFu0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v16ZbdLFu0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v16ZbdLFu0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v16ZbdLFu0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v16ZbdLFu0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v16ZbdLFu0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v16ZbdLFu0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v16ZbdLFu0 .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-v16ZbdLFu0 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v16ZbdLFu0 .collapsed .btn {
  display: -webkit-flex;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v16ZbdLFu0 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v16ZbdLFu0 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 93.4375vh;
  }
}
.cid-v16ZbdLFu0 .collapsed button.navbar-toggler {
  display: block;
}
.cid-v16ZbdLFu0 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v16ZbdLFu0 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v16ZbdLFu0 .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-v16ZbdLFu0 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v16ZbdLFu0 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v16ZbdLFu0 .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-v16ZbdLFu0.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v16ZbdLFu0 img {
    height: 3.8rem !important;
  }
  .cid-v16ZbdLFu0 .btn {
    display: -webkit-flex;
  }
  .cid-v16ZbdLFu0 button.navbar-toggler {
    display: block;
  }
  .cid-v16ZbdLFu0 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v16ZbdLFu0 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v16ZbdLFu0 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing,
  .cid-v16ZbdLFu0 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing .navbar-nav,
  .cid-v16ZbdLFu0 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v16ZbdLFu0 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-v16ZbdLFu0 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing .navbar-buttons,
  .cid-v16ZbdLFu0 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v16ZbdLFu0 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v16ZbdLFu0 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v16ZbdLFu0 .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-v16ZbdLFu0 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v16ZbdLFu0 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v16ZbdLFu0 .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: 767px) {
  .cid-v16ZbdLFu0 .nav-link {
    justify-content: start!important;
  }
  .cid-v16ZbdLFu0 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-v16ZbdLFu0 .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-v16ZbdLFu0 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-v16ZbdLFu0 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v16ZbdLFu0 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v16ZbdLFu0 .nav-link:hover,
.cid-v16ZbdLFu0 .dropdown-item:hover {
  color: #be0811 !important;
}
@media (min-width: 1500px) {
  .cid-v16ZbdLFu0 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-v16ZbdLFu0 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-v16ZjaulXb {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-v16ZjaulXb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v16ZjaulXb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v16ZjaulXb .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-v16ZjaulXb .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-v16ZjaulXb .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-v16ZjaulXb .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-v16ZjaulXb .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-v16ZjaulXb .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-v16ZjaulXb .mbr-section-head {
  width: 100%;
}
.cid-v16ZjaulXb .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-v16ZjaulXb .mbr-section-title {
    text-align: center;
  }
}
.cid-v16ZjaulXb .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-v16ZjaulXb .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-v16ZjaulXb .card-row {
  align-items: stretch;
}
.cid-v16ZjaulXb .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-v16ZjaulXb .item {
    margin-top: 30px;
  }
}
.cid-v16ZjaulXb .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #5158bd, #2a2e6d);
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff;
}
@media (max-width: 575px) {
  .cid-v16ZjaulXb .item-wrapper {
    padding: 20px;
  }
}
.cid-v16ZjaulXb .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-v16ZjaulXb .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-v16ZjaulXb .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #d32432, #d32432);
  opacity: 0;
  transition: .4s all;
}
.cid-v16ZjaulXb .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-v16ZjaulXb .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-v16ZjaulXb .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-v16ZjaulXb .card-title {
  position: relative;
  z-index: 5;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-v16ZjaulXb .card-title {
    margin-bottom: 10px;
  }
}
.cid-v16ZjaulXb .card-text {
  position: relative;
  z-index: 5;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-v16ZjaulXb .card-text a {
  transition: .4s all;
}
.cid-v16ZjaulXb .card-text a:hover {
  color: #2a2e6d !important;
}
.cid-v179kzvblO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2a2e6d;
}
.cid-v179kzvblO .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-v179kzvblO .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v179kzvblO .col + .mbr-section-btn .btn,
.cid-v179kzvblO .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v179kzvblO .col + .mbr-section-btn .btn,
  .cid-v179kzvblO .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v179kzvblO .dragArea > *:nth-last-child(2).col,
  .cid-v179kzvblO .dragArea > *:nth-last-child(2).col-auto,
  .cid-v179kzvblO .col + .mbr-section-btn,
  .cid-v179kzvblO .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v179kzvblO .dragArea {
    flex-direction: column;
  }
}
.cid-v179kzvblO .btn-primary {
  border: 1px solid #2a2e6d !important;
}
.cid-v179kzvblO .btn-primary:hover {
  border: 1px solid #2a2e6d !important;
}
.cid-v179kzvblO .stripe {
  border-bottom: 1px solid #d32432;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v179kzvblO .form-group {
  max-width: 220px;
}
.cid-v179kzvblO .mbr-section-btn {
  padding-left: 0;
}
.cid-v179kzvblO .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v179kzvblO .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-v179kzvblO .mbr-text {
  color: #444;
}
.cid-v179kzvblO h5 {
  margin-bottom: 0;
}
.cid-v179kzvblO .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v179kzvblO .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v179kzvblO .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v179kzvblO .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v179kzvblO .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-v179kzvblO .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v179kzvblO .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v179kzvblO .social-list a:hover {
  opacity: 0.4;
}
.cid-v179kzvblO .media-container-row > div {
  padding: 0px;
}
.cid-v179kzvblO .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-v179kzvblO .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-v179kzvblO .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v179kzvblO .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v179kzvblO .social-list,
  .cid-v179kzvblO .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v179kzvblO h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v179kzvblO .form-group {
    max-width: 180px;
  }
}
.cid-v179kzvblO .links span {
  color: #9e9e9e;
}
.cid-v179kzvblO .logo-sub-title {
  text-align: center;
  color: #2a2e6d;
}
.cid-v179kzvblO .logo-title {
  text-align: center;
}
.cid-v179kzvblO .logo-title,
.cid-v179kzvblO .logo {
  color: #ffffff;
}
.cid-v17cg7M8zT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d32432;
  overflow: hidden;
}
.cid-v1744pQIzj {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/capa-lvf-1.png-1920x1080.png");
}
.cid-v1744pQIzj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1744pQIzj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1744pQIzj .mbr-section-title {
  color: #ffffff;
}
.cid-v1744pQIzj .mbr-text,
.cid-v1744pQIzj .mbr-section-btn {
  color: #ffffff;
}
.cid-v1744qbLCq .navbar {
  background: #2a2e6d;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1744qbLCq .navbar-dropdown.bg-color.transparent.opened {
  background: #2a2e6d;
}
.cid-v1744qbLCq a {
  font-style: normal;
}
.cid-v1744qbLCq .show {
  overflow: visible;
}
.cid-v1744qbLCq .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-v1744qbLCq .dropdown-item:active {
  background-color: transparent;
}
.cid-v1744qbLCq .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v1744qbLCq .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-v1744qbLCq .nav-item:focus,
.cid-v1744qbLCq .nav-link:focus {
  outline: none;
}
.cid-v1744qbLCq .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v1744qbLCq .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v1744qbLCq .menu-logo {
  margin-right: auto;
}
.cid-v1744qbLCq .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v1744qbLCq .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-v1744qbLCq .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v1744qbLCq .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v1744qbLCq .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v1744qbLCq .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v1744qbLCq .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v1744qbLCq .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-v1744qbLCq .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v1744qbLCq .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v1744qbLCq .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v1744qbLCq .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-v1744qbLCq .dropdown .dropdown-menu {
  background: #2a2e6d;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v1744qbLCq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v1744qbLCq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1744qbLCq .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v1744qbLCq .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1744qbLCq .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v1744qbLCq .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v1744qbLCq .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v1744qbLCq .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v1744qbLCq .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v1744qbLCq .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v1744qbLCq .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v1744qbLCq button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-v1744qbLCq button.navbar-toggler:focus {
  outline: none;
}
.cid-v1744qbLCq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e1201d;
}
.cid-v1744qbLCq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v1744qbLCq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v1744qbLCq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v1744qbLCq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v1744qbLCq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v1744qbLCq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v1744qbLCq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v1744qbLCq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
@media (min-width: 992px) {
  .cid-v1744qbLCq .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-v1744qbLCq .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v1744qbLCq .collapsed .btn {
  display: -webkit-flex;
}
.cid-v1744qbLCq .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v1744qbLCq .collapsed .navbar-collapse.collapsing,
.cid-v1744qbLCq .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-v1744qbLCq .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v1744qbLCq .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v1744qbLCq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v1744qbLCq .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v1744qbLCq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-v1744qbLCq .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-v1744qbLCq .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v1744qbLCq .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v1744qbLCq .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v1744qbLCq .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v1744qbLCq .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 93.4375vh;
  }
}
.cid-v1744qbLCq .collapsed button.navbar-toggler {
  display: block;
}
.cid-v1744qbLCq .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v1744qbLCq .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v1744qbLCq .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-v1744qbLCq .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v1744qbLCq .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v1744qbLCq .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-v1744qbLCq.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v1744qbLCq img {
    height: 3.8rem !important;
  }
  .cid-v1744qbLCq .btn {
    display: -webkit-flex;
  }
  .cid-v1744qbLCq button.navbar-toggler {
    display: block;
  }
  .cid-v1744qbLCq .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v1744qbLCq .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v1744qbLCq .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v1744qbLCq .navbar-collapse.collapsing,
  .cid-v1744qbLCq .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-v1744qbLCq .navbar-collapse.collapsing .navbar-nav,
  .cid-v1744qbLCq .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v1744qbLCq .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v1744qbLCq .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v1744qbLCq .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-v1744qbLCq .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-v1744qbLCq .navbar-collapse.collapsing .navbar-buttons,
  .cid-v1744qbLCq .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v1744qbLCq .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v1744qbLCq .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v1744qbLCq .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-v1744qbLCq .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v1744qbLCq .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v1744qbLCq .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: 767px) {
  .cid-v1744qbLCq .nav-link {
    justify-content: start!important;
  }
  .cid-v1744qbLCq .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-v1744qbLCq .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-v1744qbLCq .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-v1744qbLCq .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v1744qbLCq .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v1744qbLCq .nav-link:hover,
.cid-v1744qbLCq .dropdown-item:hover {
  color: #be0811 !important;
}
@media (min-width: 1500px) {
  .cid-v1744qbLCq .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-v1744qbLCq .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-v17a5CON3X {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v17a5CON3X img,
.cid-v17a5CON3X .item-img {
  width: 100%;
}
.cid-v17a5CON3X .item:focus,
.cid-v17a5CON3X span:focus {
  outline: none;
}
.cid-v17a5CON3X .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v17a5CON3X .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v17a5CON3X .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v17a5CON3X .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v17a5CON3X .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v17a5CON3X .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v17a5CON3X .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v17a5CON3X .mbr-section-title {
  color: #232323;
}
.cid-v17a5CON3X .mbr-text,
.cid-v17a5CON3X .mbr-section-btn {
  text-align: left;
}
.cid-v17a5CON3X .item-title {
  text-align: left;
  color: #2a2e6d;
}
.cid-v17a5CON3X .item-subtitle {
  text-align: left;
}
.cid-v179mICE8J {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2a2e6d;
}
.cid-v179mICE8J .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-v179mICE8J .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-v179mICE8J .col + .mbr-section-btn .btn,
.cid-v179mICE8J .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-v179mICE8J .col + .mbr-section-btn .btn,
  .cid-v179mICE8J .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-v179mICE8J .dragArea > *:nth-last-child(2).col,
  .cid-v179mICE8J .dragArea > *:nth-last-child(2).col-auto,
  .cid-v179mICE8J .col + .mbr-section-btn,
  .cid-v179mICE8J .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-v179mICE8J .dragArea {
    flex-direction: column;
  }
}
.cid-v179mICE8J .btn-primary {
  border: 1px solid #2a2e6d !important;
}
.cid-v179mICE8J .btn-primary:hover {
  border: 1px solid #2a2e6d !important;
}
.cid-v179mICE8J .stripe {
  border-bottom: 1px solid #d32432;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-v179mICE8J .form-group {
  max-width: 220px;
}
.cid-v179mICE8J .mbr-section-btn {
  padding-left: 0;
}
.cid-v179mICE8J .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-v179mICE8J .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-v179mICE8J .mbr-text {
  color: #444;
}
.cid-v179mICE8J h5 {
  margin-bottom: 0;
}
.cid-v179mICE8J .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-v179mICE8J .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v179mICE8J .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-v179mICE8J .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v179mICE8J .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-v179mICE8J .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-v179mICE8J .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v179mICE8J .social-list a:hover {
  opacity: 0.4;
}
.cid-v179mICE8J .media-container-row > div {
  padding: 0px;
}
.cid-v179mICE8J .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-v179mICE8J .group-title {
  text-align: left;
  color: #ffffff;
  padding-bottom: 0.2rem;
}
.cid-v179mICE8J .links {
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v179mICE8J .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-v179mICE8J .social-list,
  .cid-v179mICE8J .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-v179mICE8J h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-v179mICE8J .form-group {
    max-width: 180px;
  }
}
.cid-v179mICE8J .links span {
  color: #9e9e9e;
}
.cid-v179mICE8J .logo-sub-title {
  text-align: center;
  color: #2a2e6d;
}
.cid-v179mICE8J .logo-title {
  text-align: center;
}
.cid-v179mICE8J .logo-title,
.cid-v179mICE8J .logo {
  color: #ffffff;
}
.cid-v17cg7M8zT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d32432;
  overflow: hidden;
}
