.btn {
  border-width: 2px;
}
body {
  font-family: 'Nunito', sans-serif;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'seguroou-Regular_WebOnly';
  font-size: 2.5rem;
  line-height: 1.24;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.63;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'seguroou-Regular_WebOnly';
  font-size: 1.5rem;
  line-height: 1.28;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  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.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #6a459b !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #b4b8ff !important;
}
.bg-warning {
  background-color: #ffdd0f !important;
}
.bg-danger {
  background-color: #1ba608 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6a459b !important;
  border-color: #6a459b !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: #412a5f !important;
  border-color: #412a5f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412a5f !important;
  border-color: #412a5f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff1f25 !important;
  border-color: #ff1f25 !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: #c70005 !important;
  border-color: #c70005 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #c70005 !important;
  border-color: #c70005 !important;
}
.btn-info,
.btn-info:active {
  background-color: #b4b8ff !important;
  border-color: #b4b8ff !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: #5d66ff !important;
  border-color: #5d66ff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5d66ff !important;
  border-color: #5d66ff !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: #ffdd0f !important;
  border-color: #ffdd0f !important;
  color: #0f0d00 !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: #b79d00 !important;
  border-color: #b79d00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #0f0d00 !important;
  background-color: #b79d00 !important;
  border-color: #b79d00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1ba608 !important;
  border-color: #1ba608 !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: #0e5304 !important;
  border-color: #0e5304 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0e5304 !important;
  border-color: #0e5304 !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: #111111 !important;
  border-color: #111111 !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: #6a459b;
  color: #6a459b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #412a5f !important;
  background-color: transparent!important;
  border-color: #412a5f !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6a459b !important;
  border-color: #6a459b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff1f25;
  color: #ff1f25;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c70005 !important;
  background-color: transparent!important;
  border-color: #c70005 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff1f25 !important;
  border-color: #ff1f25 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #b4b8ff;
  color: #b4b8ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #5d66ff !important;
  background-color: transparent!important;
  border-color: #5d66ff !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #b4b8ff !important;
  border-color: #b4b8ff !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: #ffdd0f;
  color: #ffdd0f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b79d00 !important;
  background-color: transparent!important;
  border-color: #b79d00 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #0f0d00 !important;
  background-color: #ffdd0f !important;
  border-color: #ffdd0f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #1ba608;
  color: #1ba608;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0e5304 !important;
  background-color: transparent!important;
  border-color: #0e5304 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba608 !important;
  border-color: #1ba608 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #111111;
  color: #111111;
}
.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: #111111 !important;
  border-color: #111111 !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: #6a459b !important;
}
.text-secondary {
  color: #ff1f25 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #b4b8ff !important;
}
.text-warning {
  color: #ffdd0f !important;
}
.text-danger {
  color: #1ba608 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #111111 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #3a2654 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b80005 !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: #4e57ff !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a89000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #0b4503 !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: #6a459b;
}
.nav-tabs .nav-link:not(.active) {
  color: #111111;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b4b8ff;
}
.alert-warning {
  background-color: #ffdd0f;
}
.alert-danger {
  background-color: #1ba608;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6a459b;
  border-color: #6a459b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6a459b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ac91ce;
}
.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: #fffadb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #4ff538;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.63;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6a459b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.63;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #6a459b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6a459b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6a459b;
}
.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: #6a459b;
  border-bottom-color: #6a459b;
}
.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: #6a459b !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: #ff1f25 !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='%236a459b' %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;
}
.container {
  max-width: 1200px;
}
.btn {
  box-shadow: none;
  padding: 14px 28px;
  line-height: 1;
}
.label-text {
  letter-spacing: 2px;
}
.cid-sPTOSCQoE4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 50px;
}
.cid-sPTOSCQoE4 nav.navbar {
  position: fixed;
}
.cid-sPTOSCQoE4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPTOSCQoE4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sPTOSCQoE4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sPTOSCQoE4 .dropdown-item:hover,
.cid-sPTOSCQoE4 .dropdown-item:focus {
  background: #6a459b !important;
  color: white !important;
}
.cid-sPTOSCQoE4 .dropdown-item:hover span {
  color: white;
}
.cid-sPTOSCQoE4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sPTOSCQoE4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sPTOSCQoE4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sPTOSCQoE4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sPTOSCQoE4 .nav-link {
  position: relative;
}
.cid-sPTOSCQoE4 .container {
  display: flex;
  margin: auto;
}
.cid-sPTOSCQoE4 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPTOSCQoE4 .dropdown-menu,
.cid-sPTOSCQoE4 .navbar.opened {
  background: #6a459b !important;
}
.cid-sPTOSCQoE4 .nav-item:focus,
.cid-sPTOSCQoE4 .nav-link:focus {
  outline: none;
}
.cid-sPTOSCQoE4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sPTOSCQoE4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sPTOSCQoE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sPTOSCQoE4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sPTOSCQoE4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sPTOSCQoE4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sPTOSCQoE4 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sPTOSCQoE4 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-sPTOSCQoE4 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sPTOSCQoE4 .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #6a459b;
  padding: 0 12px !important;
}
.cid-sPTOSCQoE4 .navbar.opened {
  transition: all 0.3s;
}
.cid-sPTOSCQoE4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sPTOSCQoE4 .navbar .navbar-logo img {
  width: auto;
}
.cid-sPTOSCQoE4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-sPTOSCQoE4 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-sPTOSCQoE4 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-sPTOSCQoE4 .navbar.collapsed {
  justify-content: center;
}
.cid-sPTOSCQoE4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sPTOSCQoE4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sPTOSCQoE4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sPTOSCQoE4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPTOSCQoE4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPTOSCQoE4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sPTOSCQoE4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-sPTOSCQoE4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sPTOSCQoE4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sPTOSCQoE4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sPTOSCQoE4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPTOSCQoE4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPTOSCQoE4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPTOSCQoE4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sPTOSCQoE4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sPTOSCQoE4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPTOSCQoE4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sPTOSCQoE4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sPTOSCQoE4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sPTOSCQoE4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sPTOSCQoE4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sPTOSCQoE4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sPTOSCQoE4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sPTOSCQoE4 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-sPTOSCQoE4 .navbar {
    padding: 0 50px !important;
  }
}
.cid-sPTOSCQoE4 .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sPTOSCQoE4 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-sPTOSCQoE4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-sPTOSCQoE4 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-sPTOSCQoE4 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-sPTOSCQoE4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPTOSCQoE4 .dropdown-item.active,
.cid-sPTOSCQoE4 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPTOSCQoE4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPTOSCQoE4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPTOSCQoE4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPTOSCQoE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a459b;
}
.cid-sPTOSCQoE4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPTOSCQoE4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPTOSCQoE4 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sPTOSCQoE4 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-sPTOSCQoE4 .navbar-buttons {
  text-align: center;
  margin-left: auto;
  margin-right: -0.6rem;
}
@media (min-width: 992px) {
  .cid-sPTOSCQoE4 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-sPTOSCQoE4 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-sPTOSCQoE4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-sPTOSCQoE4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sPTOSCQoE4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPTOSCQoE4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-sPTOSCQoE4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-sPTOSCQoE4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-sPTOSCQoE4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPTOSCQoE4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-sPTOSCQoE4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-sPTOSCQoE4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPTOSCQoE4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sPTOSCQoE4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPTOSCQoE4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPTOSCQoE4 .navbar {
    height: 100px;
  }
  .cid-sPTOSCQoE4 .navbar.opened {
    height: auto;
  }
  .cid-sPTOSCQoE4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPTOSCQoE4 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-sPTOSCQoE4 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-sPTOSCQoE4 .nav-link:before {
  content: '';
  position: absolute;
  color: #6a459b;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (min-width: 992px) {
  .cid-sPTOSCQoE4 .navbar-brand {
    width: 15%;
    padding: 5px 30px !important;
  }
}
@media (max-width: 778px) {
  .cid-sPTOSCQoE4 .navbar-buttons.mbr-section-btn {
    display: none;
  }
  .cid-sPTOSCQoE4 .navbar-brand {
    padding: 5px 30px !important;
  }
}
@media (max-width: 991px) {
  .cid-sPTOSCQoE4 .navbar .navbar-logo img {
    height: 2.5rem !important;
  }
  .cid-sPTOSCQoE4 .navbar-brand {
    min-height: 60px !important;
  }
  .cid-sPTOSCQoE4 .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
  }
  .cid-sPTOSCQoE4 li.nav-item {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: solid 0px #0057fc;
  }
  .cid-sPTOSCQoE4 .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 1.667em 1em !important;
    font-weight: 800;
    text-transform: uppercase;
  }
  .cid-sPTOSCQoE4 a.nav-link {
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .cid-sPTOSCQoE4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem !important;
    text-align: left;
    font-size: 90%;
  }
}
.cid-sPTOSCQoE4 .text-black {
  color: #ffffff !important;
}
.cid-sPTOSCQoE4 .text-black:hover {
  color: #ffc20f !important;
}
.cid-sPTOSCQoE4 .btn-primary,
.cid-sPTOSCQoE4 .btn-primary:active {
  background-color: #ffc20f !important;
  border-color: #6a459b !important;
  color: #6a459b !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  font-weight: 800 !important;
}
.cid-sPTOBWm9vP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/cover-top2-violet-1200x500.png");
}
.cid-sPTOBWm9vP .row {
  flex-direction: row-reverse;
}
.cid-sPTOBWm9vP .row {
  align-items: center;
}
.cid-sPTOBWm9vP .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-sPTOBWm9vP .image-wrapper {
    padding: 40px 1rem 1rem 6rem;
  }
}
@media (max-width: 991px) {
  .cid-sPTOBWm9vP .image-wrapper {
    padding: 1rem 1rem 1rem 6rem;
  }
}
.cid-sPTOBWm9vP .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-sPTOBWm9vP .text-wrapper {
    padding-right: 115px;
    padding-left: 115px;
    padding-right: 0;
  }
}
.cid-sPTOBWm9vP .label-text {
  width: 100%;
  margin-bottom: 12px;
  color: #ffffff;
  text-align: left;
}
.cid-sPTOBWm9vP .mbr-section-title {
  margin-bottom: 12px;
  color: #ffffff;
}
.cid-sPTOBWm9vP .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-sPTOBWm9vP .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-sPTOBWm9vP .btn-container {
  width: 100%;
}
.cid-sPTOBWm9vP .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-sPTOBWm9vP .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sPTOBWm9vP .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sPTOBWm9vP .mbr-text,
.cid-sPTOBWm9vP .mbr-section-btn {
  color: #ffffff;
}
@media (min-width: 768px) {
  .cid-sPTOBWm9vP .section #header7-d {
    background-position: 100% !important;
    background-size: 57% auto !important;
  }
}
.cid-tQsvh5NfeO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tQsvh5NfeO .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-tQsvh5NfeO .row {
    padding: 0 0.75rem;
  }
}
.cid-tQsvh5NfeO .text-container {
  margin-bottom: 60px;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-tQsvh5NfeO .text-container {
    margin-bottom: 20px;
  }
}
.cid-tQsvh5NfeO .label-text {
  color: #0057fc;
}
.cid-tQsvh5NfeO .mbr-section-title {
  max-width: 550px;
  margin: 0 auto;
}
.cid-tQsvh5NfeO .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.cid-tQsvh5NfeO .card {
  padding: 15px;
}
@media (max-width: 767px) {
  .cid-tQsvh5NfeO .card {
    padding: 0;
  }
}
.cid-tQsvh5NfeO .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 48px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 767px) {
  .cid-tQsvh5NfeO .card-wrapper {
    margin-bottom: 30px;
    max-width: 522px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tQsvh5NfeO .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-tQsvh5NfeO .card-text {
  color: #555555;
}
.cid-tQsvh5NfeO .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-tQsvh5NfeO .icon-box {
  width: 100%;
  margin-bottom: 20px;
}
.cid-tQsvh5NfeO .card-title {
  text-align: left;
}
.cid-tJywyaG0Wf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJywyaG0Wf .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-tJywyaG0Wf .row {
    padding: 0 0.75rem;
  }
}
.cid-tJywyaG0Wf .text-container {
  margin-bottom: 60px;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-tJywyaG0Wf .text-container {
    margin-bottom: 20px;
  }
}
.cid-tJywyaG0Wf .label-text {
  color: #0057fc;
}
.cid-tJywyaG0Wf .mbr-section-title {
  max-width: 550px;
  margin: 0 auto;
}
.cid-tJywyaG0Wf .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.cid-tJywyaG0Wf .card {
  padding: 15px;
}
@media (max-width: 767px) {
  .cid-tJywyaG0Wf .card {
    padding: 0;
  }
}
.cid-tJywyaG0Wf .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 48px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 767px) {
  .cid-tJywyaG0Wf .card-wrapper {
    margin-bottom: 30px;
    max-width: 522px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tJywyaG0Wf .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-tJywyaG0Wf .card-text {
  color: #555555;
}
.cid-tJywyaG0Wf .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-tJywyaG0Wf .icon-box {
  width: 100%;
  margin-bottom: 20px;
}
.cid-tJywyaG0Wf .card-title {
  text-align: left;
  color: #6a459b;
}
.cid-sPTPgWUzGs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sPTPgWUzGs .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-sPTPgWUzGs .row {
    padding: 0 16px;
  }
}
.cid-sPTPgWUzGs .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 100px;
  border-radius: 10px;
  background-color: #d7d7d7;
}
@media (max-width: 767px) {
  .cid-sPTPgWUzGs .content-wrapper {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cid-sPTPgWUzGs .content-wrapper {
    padding: 40px;
  }
}
.cid-sPTPgWUzGs .image-wrapper {
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  display: flex;
}
.cid-sPTPgWUzGs .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sPTPgWUzGs .mbr-section-title {
  margin-bottom: 1.425rem;
  width: 100%;
  color: #6a459b;
}
.cid-sPTPgWUzGs .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 20px;
}
.cid-sPTPgWUzGs .item-container {
  margin-top: 32px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sPTPgWUzGs .item-container {
    margin-top: 0;
  }
}
.cid-sPTPgWUzGs .item {
  display: flex;
  align-items: center;
  margin-top: 32px;
}
.cid-sPTPgWUzGs .item:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .cid-sPTPgWUzGs .item {
    flex-direction: column;
  }
}
.cid-sPTPgWUzGs .icon-box {
  background: #ffffff;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 24px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-sPTPgWUzGs .icon-box {
    margin-right: 0;
  }
}
.cid-sPTPgWUzGs .text-box {
  flex-grow: 1;
}
.cid-sPTPgWUzGs .number-text {
  color: #6a459b;
}
.cid-sPTPgWUzGs .icon-text {
  color: #111111;
  text-align: left;
}
.cid-sPTPgWUzGs img.w-100 {
  width: 115% !important;
}
.cid-sPTPDJ4Dr1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sPTPDJ4Dr1 .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-sPTPDJ4Dr1 .row {
    padding: 0 0.75rem;
  }
}
.cid-sPTPDJ4Dr1 .text-container {
  margin-bottom: 60px;
  padding: 0 !important;
}
.cid-sPTPDJ4Dr1 .label-text {
  color: #6a459b;
}
.cid-sPTPDJ4Dr1 .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-sPTPDJ4Dr1 .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-sPTPDJ4Dr1 .card {
    padding: 0;
  }
}
.cid-sPTPDJ4Dr1 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-sPTPDJ4Dr1 .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-sPTPDJ4Dr1 .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-sPTPDJ4Dr1 .card-text {
  color: #555555;
}
.cid-sPTPDJ4Dr1 .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-sPTPDJ4Dr1 .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-sPTPDJ4Dr1 .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-sPTPDJ4Dr1 .card-box {
    text-align: center;
  }
}
.cid-sPTPDJ4Dr1 .mbr-section-title {
  color: #6a459b;
}
.cid-tQsvmIUqtV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tQsvmIUqtV .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-tQsvmIUqtV .row {
    padding: 0 0.75rem;
  }
}
.cid-tQsvmIUqtV .text-container {
  margin-bottom: 60px;
  padding: 0 !important;
}
.cid-tQsvmIUqtV .label-text {
  color: #0057fc;
}
.cid-tQsvmIUqtV .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-tQsvmIUqtV .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tQsvmIUqtV .card {
    padding: 0;
  }
}
.cid-tQsvmIUqtV .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-tQsvmIUqtV .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-tQsvmIUqtV .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-tQsvmIUqtV .card-text {
  color: #555555;
}
.cid-tQsvmIUqtV .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-tQsvmIUqtV .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-tQsvmIUqtV .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tQsvmIUqtV .card-box {
    text-align: center;
  }
}
.cid-tQsvmIUqtV .mbr-section-title {
  color: #6a459b;
}
.cid-tQsvsJfpij {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tQsvsJfpij .col-title {
  margin-bottom: 30px !important;
}
@media (min-width: 768px) {
  .cid-tQsvsJfpij .col-title {
    margin-bottom: 0 !important;
  }
}
.cid-tQsvsJfpij .mbr-section-title {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .cid-tQsvsJfpij .mbr-section-title {
    margin-right: 50px;
  }
}
@media (min-width: 768px) {
  .cid-tQsvsJfpij .mbr-section-subtitle {
    margin-right: 50px;
  }
}
.cid-tQsvsJfpij .mbr-text {
  color: #555555;
}
.cid-t9quBhPGRL {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t9quBhPGRL .row {
  align-items: center;
}
.cid-t9quBhPGRL .image-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-t9quBhPGRL .image-wrapper {
    padding: 2rem 1rem 1rem;
  }
}
.cid-t9quBhPGRL .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-t9quBhPGRL .text-wrapper {
    padding-right: 84px;
  }
}
.cid-t9quBhPGRL .label-text {
  width: 100%;
  color: #6a459b;
}
.cid-t9quBhPGRL .mbr-section-title {
  margin-bottom: 12px;
}
.cid-t9quBhPGRL .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-t9quBhPGRL .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-t9quBhPGRL .icon-box {
  background: #6a459b;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t9quBhPGRL .mbr-iconfont {
  font-size: 15px;
  color: #ffffff;
}
.cid-t9quBhPGRL .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-t9quBhPGRL .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9quBhPGRL .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9quBhPGRL .mbr-section-title,
.cid-t9quBhPGRL .mbr-section-btn {
  color: #6a459b;
}
.cid-sPFXsPAhMt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eeeeee;
}
.cid-sPFXsPAhMt .row {
  flex-direction: row-reverse;
}
.cid-sPFXsPAhMt .row {
  align-items: center;
}
.cid-sPFXsPAhMt .img-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-sPFXsPAhMt .img-item {
    padding: 0;
  }
}
.cid-sPFXsPAhMt .img-item img {
  height: auto;
  width: 250px;
}
@media (max-width: 767px) {
  .cid-sPFXsPAhMt .text-col {
    margin-top: 45px;
  }
}
@media (min-width: 992px) {
  .cid-sPFXsPAhMt .text-col {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sPFXsPAhMt .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-sPFXsPAhMt .text-wrapper {
    padding: 0 75px 0 100px;
    padding: 0 100px 0 75px;
  }
}
.cid-sPFXsPAhMt .icon-wrap {
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  .cid-sPFXsPAhMt .icon-wrap {
    justify-content: center;
  }
}
.cid-sPFXsPAhMt .icon-box {
  background: #0057fc;
  width: 50px;
  min-width: 50px;
  height: 50px;
  padding: 17px;
  border-radius: 50%;
  margin-bottom: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sPFXsPAhMt .icon-box .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-sPFXsPAhMt .mbr-section-title {
  font-weight: 600;
  line-height: 1.28em;
  margin-bottom: 36px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sPFXsPAhMt .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sPFXsPAhMt .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-sPFXsPAhMt .item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  width: 100%;
  border: 1px solid #EEEEEE;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-sPFXsPAhMt .item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.cid-sPFXsPAhMt .card-icon-box {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .cid-sPFXsPAhMt .card-icon-box {
    margin-right: 0;
    margin-bottom: 12px;
  }
}
.cid-sPFXsPAhMt .card-icon-box .mbr-iconfont {
  font-size: 27px;
  color: #0057fc;
}
.cid-sPFXsPAhMt .text-box {
  width: 100%;
}
.cid-sPFXsPAhMt .card-title {
  font-weight: 500;
  line-height: 1.28em;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sPFXsPAhMt .card-title {
    text-align: center !important;
  }
}
.cid-sPFXsPAhMt .card-text {
  line-height: 1.74;
  font-weight: 400;
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sPFXsPAhMt .card-text {
    text-align: center !important;
  }
}
.cid-sPFXsPAhMt .mbr-section-btn {
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sPFXsPAhMt .mbr-section-btn {
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.cid-sPFXsPAhMt .mbr-section-title,
.cid-sPFXsPAhMt .mbr-section-btn {
  text-align: center;
  color: #6a459b;
}
.cid-sPFXsPAhMt .banner2 {
  width: 120% !important;
}
.cid-t9TaL93ZRm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t9TaL93ZRm .row {
  align-items: center;
}
.cid-t9TaL93ZRm .image-wrapper {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-t9TaL93ZRm .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-t9TaL93ZRm .text-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 30px 0 0;
}
@media (min-width: 992px) {
  .cid-t9TaL93ZRm .text-wrapper {
    padding: 0 0 0 60px;
  }
}
.cid-t9TaL93ZRm .text-container {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-t9TaL93ZRm .text-container {
    width: 550px;
    flex-shrink: 1;
  }
}
.cid-t9TaL93ZRm .label-text {
  width: 100%;
  color: #6a459b;
}
.cid-t9TaL93ZRm .mbr-section-title {
  margin-bottom: 12px;
  color: #6a459b;
}
.cid-t9TaL93ZRm .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 32px;
}
.cid-t9TaL93ZRm .item {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  flex-wrap: wrap;
}
.cid-t9TaL93ZRm .mbr-section-subtitle {
  margin: 0;
  width: 100%;
  color: #6a459b;
}
.cid-t9TaL93ZRm .numbers-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-t9TaL93ZRm .number-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t9TaL93ZRm .color-text {
  color: #0057fc;
}
.cid-t9TaL93ZRm .text-box {
  width: 100%;
}
.cid-t9TaL93ZRm .icon-text {
  width: 100%;
}
.cid-t9TaL93ZRm .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-t9TaL93ZRm .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9TaL93ZRm .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-ta3RF6ubkb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ta3RF6ubkb .row {
  align-items: center;
}
.cid-ta3RF6ubkb .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ta3RF6ubkb .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ta3RF6ubkb .header-text {
    margin-bottom: 20px;
  }
}
.cid-ta3RF6ubkb .mbr-section-title {
  width: 100%;
  color: #6a459b;
  margin-bottom: 8px;
}
.cid-ta3RF6ubkb .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-sPFVO6yMTI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sPFVO6yMTI .mbr-text {
  color: #111111;
}
#custom-html-7p {
  /* Type valid CSS here */
}
#custom-html-7p div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7p p {
  font-size: 60px;
  color: #777;
}
.cid-te3aIdV3Zu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 50px;
}
.cid-te3aIdV3Zu nav.navbar {
  position: fixed;
}
.cid-te3aIdV3Zu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-te3aIdV3Zu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-te3aIdV3Zu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-te3aIdV3Zu .dropdown-item:hover,
.cid-te3aIdV3Zu .dropdown-item:focus {
  background: #6a459b !important;
  color: white !important;
}
.cid-te3aIdV3Zu .dropdown-item:hover span {
  color: white;
}
.cid-te3aIdV3Zu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-te3aIdV3Zu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-te3aIdV3Zu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-te3aIdV3Zu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-te3aIdV3Zu .nav-link {
  position: relative;
}
.cid-te3aIdV3Zu .container {
  display: flex;
  margin: auto;
}
.cid-te3aIdV3Zu .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-te3aIdV3Zu .dropdown-menu,
.cid-te3aIdV3Zu .navbar.opened {
  background: #6a459b !important;
}
.cid-te3aIdV3Zu .nav-item:focus,
.cid-te3aIdV3Zu .nav-link:focus {
  outline: none;
}
.cid-te3aIdV3Zu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-te3aIdV3Zu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-te3aIdV3Zu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-te3aIdV3Zu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-te3aIdV3Zu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-te3aIdV3Zu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-te3aIdV3Zu .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-te3aIdV3Zu .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-te3aIdV3Zu .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-te3aIdV3Zu .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #6a459b;
  padding: 0 12px !important;
}
.cid-te3aIdV3Zu .navbar.opened {
  transition: all 0.3s;
}
.cid-te3aIdV3Zu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-te3aIdV3Zu .navbar .navbar-logo img {
  width: auto;
}
.cid-te3aIdV3Zu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-te3aIdV3Zu .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-te3aIdV3Zu .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-te3aIdV3Zu .navbar.collapsed {
  justify-content: center;
}
.cid-te3aIdV3Zu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-te3aIdV3Zu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-te3aIdV3Zu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-te3aIdV3Zu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-te3aIdV3Zu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-te3aIdV3Zu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-te3aIdV3Zu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-te3aIdV3Zu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-te3aIdV3Zu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-te3aIdV3Zu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-te3aIdV3Zu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-te3aIdV3Zu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-te3aIdV3Zu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-te3aIdV3Zu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-te3aIdV3Zu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-te3aIdV3Zu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-te3aIdV3Zu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-te3aIdV3Zu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-te3aIdV3Zu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-te3aIdV3Zu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-te3aIdV3Zu .navbar.navbar-short {
  min-height: 60px;
}
.cid-te3aIdV3Zu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-te3aIdV3Zu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-te3aIdV3Zu .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-te3aIdV3Zu .navbar {
    padding: 0 50px !important;
  }
}
.cid-te3aIdV3Zu .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-te3aIdV3Zu .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-te3aIdV3Zu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-te3aIdV3Zu .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-te3aIdV3Zu .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-te3aIdV3Zu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-te3aIdV3Zu .dropdown-item.active,
.cid-te3aIdV3Zu .dropdown-item:active {
  background-color: transparent;
}
.cid-te3aIdV3Zu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-te3aIdV3Zu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-te3aIdV3Zu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-te3aIdV3Zu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a459b;
}
.cid-te3aIdV3Zu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-te3aIdV3Zu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-te3aIdV3Zu ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-te3aIdV3Zu ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-te3aIdV3Zu .navbar-buttons {
  text-align: center;
  margin-left: auto;
  margin-right: -0.6rem;
}
@media (min-width: 992px) {
  .cid-te3aIdV3Zu .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-te3aIdV3Zu .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-te3aIdV3Zu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-te3aIdV3Zu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-te3aIdV3Zu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-te3aIdV3Zu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-te3aIdV3Zu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-te3aIdV3Zu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-te3aIdV3Zu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-te3aIdV3Zu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-te3aIdV3Zu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-te3aIdV3Zu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-te3aIdV3Zu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-te3aIdV3Zu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-te3aIdV3Zu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-te3aIdV3Zu .navbar {
    height: 100px;
  }
  .cid-te3aIdV3Zu .navbar.opened {
    height: auto;
  }
  .cid-te3aIdV3Zu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-te3aIdV3Zu .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-te3aIdV3Zu .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-te3aIdV3Zu .nav-link:before {
  content: '';
  position: absolute;
  color: #6a459b;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (min-width: 992px) {
  .cid-te3aIdV3Zu .navbar-brand {
    width: 15%;
    padding: 5px 30px !important;
  }
}
@media (max-width: 778px) {
  .cid-te3aIdV3Zu .navbar-buttons.mbr-section-btn {
    display: none;
  }
  .cid-te3aIdV3Zu .navbar-brand {
    padding: 5px 30px !important;
  }
}
@media (max-width: 991px) {
  .cid-te3aIdV3Zu .navbar .navbar-logo img {
    height: 2.5rem !important;
  }
  .cid-te3aIdV3Zu .navbar-brand {
    min-height: 60px !important;
  }
  .cid-te3aIdV3Zu .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
  }
  .cid-te3aIdV3Zu li.nav-item {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: solid 0px #0057fc;
  }
  .cid-te3aIdV3Zu .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 1.667em 1em !important;
    font-weight: 800;
    text-transform: uppercase;
  }
  .cid-te3aIdV3Zu a.nav-link {
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .cid-te3aIdV3Zu .navbar .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem !important;
    text-align: left;
    font-size: 90%;
  }
}
.cid-te3aIdV3Zu .text-black {
  color: #ffffff !important;
}
.cid-te3aIdV3Zu .text-black:hover {
  color: #ffc20f !important;
}
.cid-te3aIdV3Zu .btn-primary,
.cid-te3aIdV3Zu .btn-primary:active {
  background-color: #ffc20f !important;
  border-color: #6a459b !important;
  color: #6a459b !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  font-weight: 800 !important;
}
.cid-te3aIeglET {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #6a459b;
}
@media (min-width: 768px) {
  .cid-te3aIeglET {
    background-image: url("../../../assets/images/logo-yoou-seguros.fw-945x945.png");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 50% auto;
  }
}
.cid-te3aIeglET .row {
  align-items: center;
}
.cid-te3aIeglET .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-te3aIeglET .image-wrapper {
    padding: 40px 1rem 1rem 6rem;
  }
}
@media (max-width: 991px) {
  .cid-te3aIeglET .image-wrapper {
    padding: 1rem 1rem 1rem 6rem;
  }
}
.cid-te3aIeglET .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-te3aIeglET .text-wrapper {
    padding-right: 115px;
  }
}
.cid-te3aIeglET .label-text {
  width: 100%;
  margin-bottom: 12px;
  color: #ffffff;
  text-align: left;
}
.cid-te3aIeglET .mbr-section-title {
  margin-bottom: 12px;
  color: #ffffff;
}
.cid-te3aIeglET .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-te3aIeglET .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-te3aIeglET .btn-container {
  width: 100%;
}
.cid-te3aIeglET .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-te3aIeglET .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-te3aIeglET .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-te3aIeglET .mbr-text,
.cid-te3aIeglET .mbr-section-btn {
  color: #ffffff;
}
@media (min-width: 768px) {
  .cid-te3aIeglET .section #header7-d {
    background-position: 100% !important;
    background-size: 57% auto !important;
  }
}
.cid-te3aIeCwMA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-te3aIeCwMA .col-title {
  margin-bottom: 30px !important;
}
@media (min-width: 768px) {
  .cid-te3aIeCwMA .col-title {
    margin-bottom: 0 !important;
  }
}
.cid-te3aIeCwMA .mbr-section-title {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .cid-te3aIeCwMA .mbr-section-title {
    margin-right: 50px;
  }
}
@media (min-width: 768px) {
  .cid-te3aIeCwMA .mbr-section-subtitle {
    margin-right: 50px;
  }
}
.cid-te3aIeCwMA .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-te3aIeCwMA img {
  max-width: 237px;
  margin: 0 auto;
}
.cid-te3aIeQq7z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-te3aIeQq7z img {
  width: 100%;
  border-radius: 15px;
}
.cid-te3aIf6507 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-te3aIf6507 .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-te3aIf6507 .row {
    padding: 0 0.75rem;
  }
}
.cid-te3aIf6507 .text-container {
  margin-bottom: 60px;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-te3aIf6507 .text-container {
    margin-bottom: 20px;
  }
}
.cid-te3aIf6507 .label-text {
  color: #0057fc;
}
.cid-te3aIf6507 .mbr-section-title {
  max-width: 550px;
  margin: 0 auto;
}
.cid-te3aIf6507 .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.cid-te3aIf6507 .card {
  padding: 15px;
}
@media (max-width: 767px) {
  .cid-te3aIf6507 .card {
    padding: 0;
  }
}
.cid-te3aIf6507 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 48px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 767px) {
  .cid-te3aIf6507 .card-wrapper {
    margin-bottom: 30px;
    max-width: 522px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-te3aIf6507 .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-te3aIf6507 .card-text {
  color: #555555;
}
.cid-te3aIf6507 .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-te3aIf6507 .icon-box {
  width: 100%;
  margin-bottom: 20px;
}
.cid-te3aIf6507 .card-title {
  text-align: left;
}
.cid-te3aIfH1jy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-te3aIfH1jy .col-title {
  margin-bottom: 30px !important;
}
@media (min-width: 768px) {
  .cid-te3aIfH1jy .col-title {
    margin-bottom: 0 !important;
  }
}
.cid-te3aIfH1jy .mbr-section-title {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .cid-te3aIfH1jy .mbr-section-title {
    margin-right: 50px;
  }
}
@media (min-width: 768px) {
  .cid-te3aIfH1jy .mbr-section-subtitle {
    margin-right: 50px;
  }
}
.cid-te3aIfH1jy .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-te3aIfWRnB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-te3aIfWRnB .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-te3aIfWRnB .row {
    padding: 0 0.75rem;
  }
}
.cid-te3aIfWRnB .text-container {
  margin-bottom: 60px;
  padding: 0 !important;
}
.cid-te3aIfWRnB .label-text {
  color: #0057fc;
}
.cid-te3aIfWRnB .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-te3aIfWRnB .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-te3aIfWRnB .card {
    padding: 0;
  }
}
.cid-te3aIfWRnB .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-te3aIfWRnB .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-te3aIfWRnB .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-te3aIfWRnB .card-text {
  color: #555555;
}
.cid-te3aIfWRnB .mbr-iconfont {
  font-size: 25px;
  color: #0057fc;
}
.cid-te3aIfWRnB .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-te3aIfWRnB .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-te3aIfWRnB .card-box {
    text-align: center;
  }
}
.cid-te3aIgpWWb {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-te3aIgpWWb .row {
  align-items: center;
}
.cid-te3aIgpWWb .image-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-te3aIgpWWb .image-wrapper {
    padding: 2rem 1rem 1rem;
  }
}
.cid-te3aIgpWWb .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-te3aIgpWWb .text-wrapper {
    padding-right: 84px;
  }
}
.cid-te3aIgpWWb .label-text {
  width: 100%;
  color: #0057fc;
}
.cid-te3aIgpWWb .mbr-section-title {
  margin-bottom: 12px;
}
.cid-te3aIgpWWb .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-te3aIgpWWb .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-te3aIgpWWb .icon-box {
  background: #0057fc;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-te3aIgpWWb .mbr-iconfont {
  font-size: 15px;
  color: #ffffff;
}
.cid-te3aIgpWWb .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-te3aIgpWWb .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-te3aIgpWWb .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-te3aIgQ45C {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-te3aIgQ45C .row {
  align-items: center;
}
.cid-te3aIgQ45C .image-wrapper {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-te3aIgQ45C .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-te3aIgQ45C .text-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 30px 0 0;
}
@media (min-width: 992px) {
  .cid-te3aIgQ45C .text-wrapper {
    padding: 0 0 0 60px;
  }
}
.cid-te3aIgQ45C .text-container {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-te3aIgQ45C .text-container {
    width: 550px;
    flex-shrink: 1;
  }
}
.cid-te3aIgQ45C .label-text {
  width: 100%;
  color: #0057fc;
}
.cid-te3aIgQ45C .mbr-section-title {
  margin-bottom: 12px;
}
.cid-te3aIgQ45C .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 32px;
}
.cid-te3aIgQ45C .item {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  flex-wrap: wrap;
}
.cid-te3aIgQ45C .mbr-section-subtitle {
  margin: 0;
  width: 100%;
}
.cid-te3aIgQ45C .numbers-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-te3aIgQ45C .number-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-te3aIgQ45C .color-text {
  color: #0057fc;
}
.cid-te3aIgQ45C .text-box {
  width: 100%;
}
.cid-te3aIgQ45C .icon-text {
  width: 100%;
}
.cid-te3aIgQ45C .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-te3aIgQ45C .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-te3aIgQ45C .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-te3aIhfg2C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-te3aIhfg2C .mbr-text {
  color: #111111;
}
#custom-html-7q {
  /* Type valid CSS here */
}
#custom-html-7q div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7q p {
  font-size: 60px;
  color: #777;
}
.cid-tzW1ekRck5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 50px;
}
.cid-tzW1ekRck5 nav.navbar {
  position: fixed;
}
.cid-tzW1ekRck5 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzW1ekRck5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tzW1ekRck5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tzW1ekRck5 .dropdown-item:hover,
.cid-tzW1ekRck5 .dropdown-item:focus {
  background: #6a459b !important;
  color: white !important;
}
.cid-tzW1ekRck5 .dropdown-item:hover span {
  color: white;
}
.cid-tzW1ekRck5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tzW1ekRck5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tzW1ekRck5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tzW1ekRck5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzW1ekRck5 .nav-link {
  position: relative;
}
.cid-tzW1ekRck5 .container {
  display: flex;
  margin: auto;
}
.cid-tzW1ekRck5 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzW1ekRck5 .dropdown-menu,
.cid-tzW1ekRck5 .navbar.opened {
  background: #6a459b !important;
}
.cid-tzW1ekRck5 .nav-item:focus,
.cid-tzW1ekRck5 .nav-link:focus {
  outline: none;
}
.cid-tzW1ekRck5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzW1ekRck5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzW1ekRck5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzW1ekRck5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzW1ekRck5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzW1ekRck5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzW1ekRck5 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tzW1ekRck5 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tzW1ekRck5 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tzW1ekRck5 .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #6a459b;
  padding: 0 12px !important;
}
.cid-tzW1ekRck5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tzW1ekRck5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzW1ekRck5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tzW1ekRck5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tzW1ekRck5 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tzW1ekRck5 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tzW1ekRck5 .navbar.collapsed {
  justify-content: center;
}
.cid-tzW1ekRck5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzW1ekRck5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzW1ekRck5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tzW1ekRck5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzW1ekRck5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzW1ekRck5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tzW1ekRck5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tzW1ekRck5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzW1ekRck5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzW1ekRck5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzW1ekRck5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzW1ekRck5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzW1ekRck5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzW1ekRck5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tzW1ekRck5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzW1ekRck5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzW1ekRck5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzW1ekRck5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzW1ekRck5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzW1ekRck5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzW1ekRck5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tzW1ekRck5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzW1ekRck5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tzW1ekRck5 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tzW1ekRck5 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tzW1ekRck5 .navbar-brand {
  min-height: 60px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tzW1ekRck5 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tzW1ekRck5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tzW1ekRck5 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tzW1ekRck5 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tzW1ekRck5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzW1ekRck5 .dropdown-item.active,
.cid-tzW1ekRck5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tzW1ekRck5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzW1ekRck5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzW1ekRck5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzW1ekRck5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a459b;
}
.cid-tzW1ekRck5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzW1ekRck5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzW1ekRck5 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tzW1ekRck5 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tzW1ekRck5 .navbar-buttons {
  text-align: center;
  margin-left: auto;
  margin-right: -0.6rem;
}
@media (min-width: 992px) {
  .cid-tzW1ekRck5 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tzW1ekRck5 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tzW1ekRck5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tzW1ekRck5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tzW1ekRck5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzW1ekRck5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tzW1ekRck5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tzW1ekRck5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tzW1ekRck5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzW1ekRck5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tzW1ekRck5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tzW1ekRck5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzW1ekRck5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tzW1ekRck5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzW1ekRck5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzW1ekRck5 .navbar {
    height: 100px;
  }
  .cid-tzW1ekRck5 .navbar.opened {
    height: auto;
  }
  .cid-tzW1ekRck5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzW1ekRck5 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tzW1ekRck5 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tzW1ekRck5 .nav-link:before {
  content: '';
  position: absolute;
  color: #6a459b;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (min-width: 992px) {
  .cid-tzW1ekRck5 .navbar-brand {
    width: 15%;
    padding: 5px 30px !important;
  }
}
@media (max-width: 778px) {
  .cid-tzW1ekRck5 .navbar-buttons.mbr-section-btn {
    display: none;
  }
  .cid-tzW1ekRck5 .navbar-brand {
    padding: 5px 30px !important;
  }
}
@media (max-width: 991px) {
  .cid-tzW1ekRck5 .navbar .navbar-logo img {
    height: 2.5rem !important;
  }
  .cid-tzW1ekRck5 .navbar-brand {
    min-height: 60px !important;
  }
  .cid-tzW1ekRck5 .navbar.navbar-short .navbar-logo img {
    height: 2.5rem !important;
  }
  .cid-tzW1ekRck5 li.nav-item {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: solid 0px #0057fc;
  }
  .cid-tzW1ekRck5 .nav-dropdown .link {
    padding: 0 0.3em !important;
    margin: 1.667em 1em !important;
    font-weight: 800;
    text-transform: uppercase;
  }
  .cid-tzW1ekRck5 a.nav-link {
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .cid-tzW1ekRck5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem !important;
    text-align: left;
    font-size: 90%;
  }
}
.cid-tzW1ekRck5 .text-black {
  color: #ffffff !important;
}
.cid-tzW1ekRck5 .text-black:hover {
  color: #ffc20f !important;
}
.cid-tzW1ekRck5 .btn-primary,
.cid-tzW1ekRck5 .btn-primary:active {
  background-color: #ffc20f !important;
  border-color: #6a459b !important;
  color: #6a459b !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  font-weight: 800 !important;
}
#custom-html-7j {
  /* Type valid CSS here */
}
#custom-html-7j div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7j p {
  font-size: 60px;
  color: #777;
}
#custom-html-7j iframe {
  z-index: -9;
}
.cid-tzW1elpJpb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tzW1elpJpb .mbr-text {
  color: #111111;
}
#custom-html-7r {
  /* Type valid CSS here */
}
#custom-html-7r div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7r p {
  font-size: 60px;
  color: #777;
}
