.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Raleway', 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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((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: #191b99 !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: #191b99 !important;
  border-color: #191b99 !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: #0d0e4e !important;
  border-color: #0d0e4e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d0e4e !important;
  border-color: #0d0e4e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff0a01 !important;
  border-color: #ff0a01 !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: #a90600 !important;
  border-color: #a90600 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a90600 !important;
  border-color: #a90600 !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: #191b99;
  color: #191b99;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0d0e4e !important;
  background-color: transparent!important;
  border-color: #0d0e4e !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #191b99 !important;
  border-color: #191b99 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff0a01;
  color: #ff0a01;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a90600 !important;
  background-color: transparent!important;
  border-color: #a90600 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0a01 !important;
  border-color: #ff0a01 !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: #191b99 !important;
}
.text-secondary {
  color: #ff0a01 !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: #0b0c41 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #9a0500 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #191b99;
}
.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: #191b99;
  border-color: #191b99;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #191b99;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4f52e2;
}
.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*/
.form-control {
  font-family: 'Raleway', 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: #191b99 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Raleway', 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: #191b99;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #191b99;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #191b99;
}
.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: #191b99;
  border-bottom-color: #191b99;
}
.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: #191b99 !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: #ff0a01 !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='%23191b99' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uy41HP2anu .navbar {
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uy41HP2anu .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uy41HP2anu .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uy41HP2anu .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uy41HP2anu .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uy41HP2anu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uy41HP2anu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uy41HP2anu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uy41HP2anu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uy41HP2anu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uy41HP2anu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uy41HP2anu .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uy41HP2anu .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uy41HP2anu .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uy41HP2anu .navbar-fixed-top.opened {
  position: relative;
}
.cid-uy41HP2anu a {
  font-style: normal;
}
.cid-uy41HP2anu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uy41HP2anu .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uy41HP2anu .nav-item .nav-link {
  color: #ffffff;
}
.cid-uy41HP2anu .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uy41HP2anu .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uy41HP2anu .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uy41HP2anu .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uy41HP2anu .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uy41HP2anu .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uy41HP2anu .menu-content-right {
    display: none;
  }
}
.cid-uy41HP2anu .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uy41HP2anu .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uy41HP2anu .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uy41HP2anu .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uy41HP2anu .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #40b0bf;
}
.cid-uy41HP2anu .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uy41HP2anu .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uy41HP2anu .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uy41HP2anu .right-box {
    display: none;
  }
}
.cid-uy41HP2anu .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uy41HP2anu .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uy41HP2anu .content-text {
  margin-bottom: 0;
}
.cid-uy41HP2anu .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uy41HP2anu .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #191b99;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uy41HP2anu .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uy41HP2anu .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uy41HP2anu .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uy41HP2anu .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uy41HP2anu .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uy41HP2anu .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uy41HP2anu .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uy41HP2anu .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uy41HP2anu .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uy41HP2anu .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uy41HP2anu .nav-dropdown .link {
  font-weight: 600;
}
.cid-uy41HP2anu .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uy41HP2anu .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uy41HP2anu .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uy41HP2anu .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uy41HP2anu .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uy41HP2anu .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uy41HP2anu .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uy41HP2anu .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uy41HP2anu .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uy41HP2anu .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uy41HP2anu .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uy41HP2anu .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uy41HP2anu .menu-content-top.show {
  display: block;
}
.cid-uy41HP2anu .pre-header-right {
  align-self: center;
}
.cid-uy41HP2anu .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uy41HP2anu .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #4f87fb;
}
.cid-uy41HP2anu .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uy41HP2anu .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uy41HP2anu .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uy41HP2anu .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uy41HP2anu .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uy41HP2anu .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uy41HP2anu .navbar .menu-content-top {
    display: none;
  }
  .cid-uy41HP2anu .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uy41HP2anu .dropdown-item:before {
    display: none;
  }
  .cid-uy41HP2anu .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uy41HP2anu img {
    height: 3.8rem !important;
  }
  .cid-uy41HP2anu .btn {
    display: flex;
  }
  .cid-uy41HP2anu button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uy41HP2anu .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uy41HP2anu .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uy41HP2anu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uy41HP2anu .navbar-collapse.collapsing,
  .cid-uy41HP2anu .navbar-collapse.show {
    display: block !important;
  }
  .cid-uy41HP2anu .navbar-collapse.collapsing .navbar-nav,
  .cid-uy41HP2anu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uy41HP2anu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uy41HP2anu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uy41HP2anu .navbar-collapse.collapsing .navbar-buttons,
  .cid-uy41HP2anu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uy41HP2anu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uy41HP2anu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uy41HP2anu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uy41HP2anu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uy41HP2anu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uy41HP2anu .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: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uy41HP2anu .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uy41HP2anu .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uy41HP2anu .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uy41HP2anu .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uy41HP2anu .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uy41HP2anu .navbar {
    display: block;
    padding: 0;
  }
  .cid-uy41HP2anu .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uy41HP2anu .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uy41HP2anu .navbar-toggler {
    display: none;
  }
}
.cid-uy41HP2anu .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uy41HP2anu .menu-area-wrapper .menu-area {
  background-color: #191b99;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uy41HP2anu .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uy41HP2anu .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uy41HP2anu .navbar-short {
  background: transparent;
}
.cid-uy41HP2anu .navbar-short .menu-content-top,
.cid-uy41HP2anu .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uy41HP2anu .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uy41HP2anu .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uy41HP2anu .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uy41HP2anu .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uy41HP2anu .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uy41HP2anu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uy41HP2anu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uy41HP2anu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uy41HP2anu .dropdown {
  color: #40b0bf !important;
}
.cid-uy41HP2anu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #191b99;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #40b0bf !important;
}
@media (max-width: 1200px) {
  .cid-uy41HP2anu .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uy41HP2anu .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uy41HP2anu .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uy41HP2anu .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #4f87fb;
  color: #ffffff;
}
.cid-uy41HP2anu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uy41HP2anu .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uy41HP2anu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uy41HP2anu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uy41HP2anu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uy41HP2anu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uy41HP2anu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uy41HP2anu .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uy41HP2anu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uy41HP2anu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uy41HP2anu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uy41HP2anu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uy41HP2anu button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uy41HP2anu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uy41HP2anu button.navbar-toggler:focus {
  outline: none;
}
.cid-uy41HP2anu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uy41HP2anu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uy41HP2anu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uy41HP2anu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uy41HP2anu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uy41HP2anu nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uy41HP2anu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uy41HP2anu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uy41HP2anu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uy41HP2anu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uy41HP2anu .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uy41HP2anu .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uy41HP2anu .collapsed .btn {
  display: flex;
}
.cid-uy41HP2anu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uy41HP2anu .collapsed .navbar-collapse.collapsing,
.cid-uy41HP2anu .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uy41HP2anu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uy41HP2anu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uy41HP2anu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uy41HP2anu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uy41HP2anu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uy41HP2anu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uy41HP2anu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uy41HP2anu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uy41HP2anu .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 3.5rem);
  }
  .cid-uy41HP2anu .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uy41HP2anu .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uy41HP2anu .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uy41HP2anu .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uy41HP2anu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uy41HP2anu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uy41HP2anu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uy41HP2anu .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: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uy41HP2anu .collapsed .dropdown-item:before {
  display: none;
}
.cid-uy41HP2anu .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uy41HP2anu .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uy41HP2anu .nav-link:focus {
  outline: none;
}
.cid-uy41HP2anu .navbar-toggler {
  position: relative;
}
.cid-uy41HP2anu .dropdown-item.active,
.cid-uy41HP2anu .dropdown-item:active {
  color: auto;
}
.cid-uy41HP2anu .dropdown-item:hover {
  color: #4f87fb;
}
.cid-uy41HP2anu .widget-title,
.cid-uy41HP2anu .widget-icon {
  color: #191b99;
}
.cid-uy45wdWbAc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy45wdWbAc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-uy47mmeibn {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy47mmeibn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy47mmeibn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy47mmeibn .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uy47mmeibn .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uy47mmeibn .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uy47mmeibn .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uy47mmeibn .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy47mmeibn .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uy47mmeibn .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uy47mmeibn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uy47mmeibn .card-title {
  color: #191b99;
}
.cid-uy4okxVGIo {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uy4okxVGIo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy4okxVGIo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uy4okxVGIo .container {
    max-width: 1400px;
  }
}
.cid-uy4okxVGIo .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uy4okxVGIo .row {
  justify-content: center;
}
.cid-uy4okxVGIo .card-title,
.cid-uy4okxVGIo .iconfont-wrapper {
  color: #191b99;
}
.cid-uy48kYS2jy {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uy48kYS2jy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy48kYS2jy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy48kYS2jy .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uy48kYS2jy .team-card:hover {
  transform: translateY(-10px);
}
.cid-uy48kYS2jy .item-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uy48kYS2jy .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uy48kYS2jy .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uy48kYS2jy .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uy48kYS2jy .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-uy48kYS2jy .social-row {
  text-align: center;
}
.cid-uy48kYS2jy .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uy48kYS2jy .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uy48kYS2jy .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uy48kYS2jy .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uy48kYS2jy .mbr-section-title {
  color: #191b99;
}
.cid-uy4ajYU0NY {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uy4ajYU0NY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy4ajYU0NY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy4ajYU0NY .mbr-section-title {
  color: #191b99;
}
.cid-uy4aYl3gtu {
  background-image: url("../../../assets/images/foto-09-12-2024-10.jpeg");
}
.cid-uy4aYl3gtu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy4aYl3gtu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy4aYl3gtu .mbr-section-title {
  color: #ffffff;
}
.cid-uy4aYl3gtu .mbr-text,
.cid-uy4aYl3gtu .mbr-section-btn {
  color: #ffffff;
}
.cid-uy4aKrPjIT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uy4aKrPjIT img,
.cid-uy4aKrPjIT .item-img {
  width: 100%;
}
.cid-uy4aKrPjIT .item:focus,
.cid-uy4aKrPjIT span:focus {
  outline: none;
}
.cid-uy4aKrPjIT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uy4aKrPjIT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uy4aKrPjIT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uy4aKrPjIT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uy4aKrPjIT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uy4aKrPjIT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uy4aKrPjIT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uy4aKrPjIT .mbr-section-title {
  color: #191b99;
}
.cid-uy4aKrPjIT .mbr-text,
.cid-uy4aKrPjIT .mbr-section-btn {
  text-align: left;
}
.cid-uy4aKrPjIT .item-title {
  text-align: left;
}
.cid-uy4aKrPjIT .item-subtitle {
  text-align: center;
}
.cid-uy4ijOBHRw .icon-wrapper {
  margin: auto;
  background-color: #191b99;
  color: #fafafa;
  border-radius: 50%;
  font-size: 48px;
  cursor: pointer;
  width: 6rem;
  height: 6rem;
  transition: all 0.25s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uy4ijOBHRw .icon-wrapper span {
  margin-left: 10px;
}
.cid-uy4ijOBHRw .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uy4ijOBHRw .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uy4ijOBHRw .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uy4ijOBHRw .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uy4ijOBHRw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uy4ijOBHRw H1 {
  color: #ffffff;
}
.cid-uy4ijOBHRw .mbr-text,
.cid-uy4ijOBHRw .mbr-media {
  color: #ffffff;
}
.cid-uy4ijOBHRw .icon-description {
  color: #ffffff;
}
.cid-uy4gHfY7pv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uy4gHfY7pv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy4gHfY7pv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy4gHfY7pv .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uy4gHfY7pv .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uy4gHfY7pv .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uy4gHfY7pv .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy4gHfY7pv .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uy4gHfY7pv .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uy4gHfY7pv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uy4gHfY7pv .card-title {
  color: #191b99;
}
.cid-uy4h1wXGgE {
  background-image: url("../../../assets/images/foto-09-12-2024-10.jpeg");
}
.cid-uy4h1wXGgE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy4h1wXGgE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy4h1wXGgE .mbr-section-title {
  color: #ffffff;
}
.cid-uy4h1wXGgE .mbr-text,
.cid-uy4h1wXGgE .mbr-section-btn {
  color: #ffffff;
}
.cid-uy4lTMsnzc {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uy4lTMsnzc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy4lTMsnzc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy4lTMsnzc .mbr-section-title {
  color: #191b99;
}
.cid-uy4gVgv1N2 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uy4gVgv1N2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy4gVgv1N2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy4gVgv1N2 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uy4gVgv1N2 .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uy4gVgv1N2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uy4gVgv1N2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uy4gVgv1N2 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uy4gVgv1N2 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uy4gVgv1N2 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uy4gVgv1N2 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uy4gVgv1N2 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy4gVgv1N2 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uy4gVgv1N2 .card-title {
  color: #191b99;
}
.cid-uy4e20oqpx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uy4e20oqpx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy4e20oqpx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uy4e20oqpx .row {
    flex-direction: column-reverse;
  }
  .cid-uy4e20oqpx .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uy4e20oqpx .google-map {
  height: 100%;
  position: relative;
}
.cid-uy4e20oqpx .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uy4e20oqpx .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-uy4e20oqpx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uy4e20oqpx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uy4e20oqpx .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uy4e20oqpx .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uy4e20oqpx .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uy4e20oqpx .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy4e20oqpx .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uy4e20oqpx .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #191b99;
}
.cid-uy4e20oqpx .mbr-section-title {
  color: #191b99;
}
.cid-uy4e20oqpx .card-title {
  color: #191b99;
}
.cid-uy4eXQjQZg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #232323;
}
.cid-uy4eXQjQZg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy4eXQjQZg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy4eXQjQZg .copyright {
  color: #ffffff;
}
.cid-uy4eXQjQZg .line {
  width: 100%;
  height: 1px;
  opacity: 0.5;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uy4eXQjQZg .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uy4eXQjQZg .row .copyright {
    text-align: center;
    padding-bottom: 2rem;
  }
}
.cid-uy4eXQjQZg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uy4eXQjQZg .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uy4eXQjQZg .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uy4eXQjQZg .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uy4eXQjQZg .row-links .row-links-soc {
    justify-content: center;
  }
}
.cid-uy4eXQjQZg .row-links-soc,
.cid-uy4eXQjQZg .row-links-soc-item .row-links-soc-item {
  color: #ffffff;
}
.cid-uy4eXQjQZg .copyright,
.cid-uy4eXQjQZg .line {
  color: #ffffff;
}
