@import url(https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Encode+Sans:100,200,300,400,500,600,700,800,900&display=swap);





body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Encode Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Encode Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Encode Sans', 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: #010b40 !important;
}
.bg-success {
  background-color: #f2cf1d !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: #010b40 !important;
  border-color: #010b40 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #013440 !important;
  border-color: #013440 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #f2cf1d !important;
  border-color: #f2cf1d !important;
  color: #0f0d01 !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: #ae930a !important;
  border-color: #ae930a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #0f0d01 !important;
  background-color: #ae930a !important;
  border-color: #ae930a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #010b40;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #010b40 !important;
  border-color: #010b40 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #013440;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #013440 !important;
  border-color: #013440 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f2cf1d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ae930a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #0f0d01 !important;
  background-color: #f2cf1d !important;
  border-color: #f2cf1d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #010b40 !important;
}
.text-secondary {
  color: #013440 !important;
}
.text-success {
  color: #f2cf1d !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: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #a08709 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #010b40;
}
.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: #010b40;
  border-color: #010b40;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #010b40;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2b4cfc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fdf8de;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Encode Sans', 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: #010b40 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Encode Sans', 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: #010b40;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #010b40;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #010b40;
}
.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: #010b40;
  border-bottom-color: #010b40;
}
.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: #010b40 !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: #013440 !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='%23010b40' %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-sz5KlcwlYi .navbar {
  background: #013440;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-sz5KlcwlYi .navbar-dropdown.bg-color.transparent.opened {
  background: #013440;
}
.cid-sz5KlcwlYi a {
  font-style: normal;
}
.cid-sz5KlcwlYi .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sz5KlcwlYi .show {
  overflow: visible;
}
.cid-sz5KlcwlYi .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-sz5KlcwlYi .dropdown-item:active {
  background-color: transparent;
}
.cid-sz5KlcwlYi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sz5KlcwlYi .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-sz5KlcwlYi .nav-item:focus,
.cid-sz5KlcwlYi .nav-link:focus {
  outline: none;
}
.cid-sz5KlcwlYi .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sz5KlcwlYi .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sz5KlcwlYi .menu-logo {
  margin-right: auto;
}
.cid-sz5KlcwlYi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sz5KlcwlYi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sz5KlcwlYi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sz5KlcwlYi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sz5KlcwlYi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sz5KlcwlYi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sz5KlcwlYi .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sz5KlcwlYi .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-sz5KlcwlYi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sz5KlcwlYi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sz5KlcwlYi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sz5KlcwlYi .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-sz5KlcwlYi .dropdown .dropdown-menu {
  background: #013440;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sz5KlcwlYi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sz5KlcwlYi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sz5KlcwlYi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sz5KlcwlYi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sz5KlcwlYi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sz5KlcwlYi .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-sz5KlcwlYi .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sz5KlcwlYi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sz5KlcwlYi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sz5KlcwlYi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-sz5KlcwlYi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sz5KlcwlYi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sz5KlcwlYi button.navbar-toggler:focus {
  outline: none;
}
.cid-sz5KlcwlYi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-sz5KlcwlYi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sz5KlcwlYi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz5KlcwlYi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sz5KlcwlYi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sz5KlcwlYi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sz5KlcwlYi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sz5KlcwlYi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sz5KlcwlYi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-sz5KlcwlYi .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-sz5KlcwlYi .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sz5KlcwlYi .collapsed .btn {
  display: -webkit-flex;
}
.cid-sz5KlcwlYi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sz5KlcwlYi .collapsed .navbar-collapse.collapsing,
.cid-sz5KlcwlYi .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-sz5KlcwlYi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sz5KlcwlYi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sz5KlcwlYi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sz5KlcwlYi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sz5KlcwlYi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sz5KlcwlYi .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sz5KlcwlYi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sz5KlcwlYi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sz5KlcwlYi .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 94.375vh;
  }
}
.cid-sz5KlcwlYi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sz5KlcwlYi .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sz5KlcwlYi .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sz5KlcwlYi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sz5KlcwlYi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sz5KlcwlYi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sz5KlcwlYi .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;
}
@media (max-width: 991px) {
  .cid-sz5KlcwlYi.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sz5KlcwlYi img {
    height: 3.8rem !important;
  }
  .cid-sz5KlcwlYi .btn {
    display: -webkit-flex;
  }
  .cid-sz5KlcwlYi button.navbar-toggler {
    display: block;
  }
  .cid-sz5KlcwlYi .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sz5KlcwlYi .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sz5KlcwlYi .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sz5KlcwlYi .navbar-collapse.collapsing,
  .cid-sz5KlcwlYi .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-sz5KlcwlYi .navbar-collapse.collapsing .navbar-nav,
  .cid-sz5KlcwlYi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sz5KlcwlYi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sz5KlcwlYi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sz5KlcwlYi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sz5KlcwlYi .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sz5KlcwlYi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sz5KlcwlYi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sz5KlcwlYi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sz5KlcwlYi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sz5KlcwlYi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sz5KlcwlYi .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;
  }
}
@media (max-width: 767px) {
  .cid-sz5KlcwlYi .nav-link {
    justify-content: start !important;
  }
  .cid-sz5KlcwlYi .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-sz5KlcwlYi .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-sz5KlcwlYi .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-sz5KlcwlYi .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sz5KlcwlYi .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sz5KlcwlYi .nav-link:hover,
.cid-sz5KlcwlYi .dropdown-item:hover {
  color: #ffffff !important;
}
@media (min-width: 1500px) {
  .cid-sz5KlcwlYi .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-sz5KlcwlYi .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-sz6irdPVS5 {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fondoheader.jpg");
}
.cid-sz6irdPVS5 .mbr-section-title {
  color: #f2cf1d;
}
.cid-sz6irdPVS5 .mbr-text,
.cid-sz6irdPVS5 .mbr-section-btn {
  color: #ffffff;
}
.cid-sz5RJkmPxr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sz5RJkmPxr .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sz5RJkmPxr .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sz5RJkmPxr .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sz5RJkmPxr .mbr-section-title {
  text-align: left;
  color: #013440;
}
.cid-sz5RJkmPxr .mbr-text,
.cid-sz5RJkmPxr .mbr-section-btn {
  text-align: left;
}
.cid-sz5W5xeBvW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondouso.jpg");
}
.cid-sz5W5xeBvW .mbr-overlay {
  background: #000000;
  opacity: 0.1;
}
.cid-sz5W5xeBvW img,
.cid-sz5W5xeBvW .item-img {
  width: 100%;
}
.cid-sz5W5xeBvW .item:focus,
.cid-sz5W5xeBvW span:focus {
  outline: none;
}
.cid-sz5W5xeBvW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sz5W5xeBvW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sz5W5xeBvW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sz5W5xeBvW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sz5W5xeBvW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sz5W5xeBvW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sz5W5xeBvW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sz5W5xeBvW .mbr-section-title {
  color: #f2cf1d;
}
.cid-sz5W5xeBvW .mbr-text,
.cid-sz5W5xeBvW .mbr-section-btn {
  text-align: left;
}
.cid-sz5W5xeBvW .item-title {
  text-align: left;
}
.cid-sz5W5xeBvW .item-subtitle {
  text-align: left;
}
.cid-sz5XhBeB37 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sz5XhBeB37 .row {
  flex-direction: row-reverse;
}
.cid-sz5XhBeB37 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sz5XhBeB37 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sz5XhBeB37 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sz5XhBeB37 .mbr-section-title {
  text-align: left;
  color: #013440;
}
.cid-sz5XhBeB37 .mbr-text,
.cid-sz5XhBeB37 .mbr-section-btn {
  text-align: left;
}
.cid-sz625wBBkF {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/fondovideo.jpg");
}
.cid-sz625wBBkF .icon-wrapper {
  margin: auto;
  background-color: #013440;
  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-sz625wBBkF .icon-wrapper span {
  margin-left: 10px;
}
.cid-sz625wBBkF .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sz625wBBkF .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sz625wBBkF .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sz625wBBkF .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-sz625wBBkF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sz625wBBkF H1 {
  color: #f2cf1d;
}
.cid-sz5XhY0CCL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sz5XhY0CCL .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sz5XhY0CCL .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sz5XhY0CCL .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sz5XhY0CCL .mbr-section-title {
  text-align: left;
  color: #013440;
}
.cid-sz5XhY0CCL .mbr-text,
.cid-sz5XhY0CCL .mbr-section-btn {
  text-align: left;
}
.cid-sz61rFejKu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f3f7;
}
.cid-sz61rFejKu .carousel-item {
  justify-content: center;
}
.cid-sz61rFejKu .carousel-item.active,
.cid-sz61rFejKu .carousel-item-next,
.cid-sz61rFejKu .carousel-item-prev {
  display: flex;
}
.cid-sz61rFejKu .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sz61rFejKu .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sz61rFejKu .mbr-iconfont {
  color: #010b40;
}
.cid-sz61rFejKu .carousel-control-next span {
  padding-left: 5px;
}
.cid-sz61rFejKu .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sz61rFejKu .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  margin: 0 auto 2rem auto;
}
.cid-sz61rFejKu .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sz61rFejKu .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sz61rFejKu .user_text {
  color: #000000;
}
.cid-sz61rFejKu H3 {
  color: #013440;
}
.cid-sz61rFejKu .user_name {
  color: #013440;
}
.cid-sz62bYx5jA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sz62bYx5jA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sz62bYx5jA form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-sz62bYx5jA form.mbr-form {
    padding: 3rem 2rem;
    width: 90%;
  }
}
@media (max-width: 991px) {
  .cid-sz62bYx5jA form.mbr-form {
    padding: 1rem;
  }
}
.cid-sz62bYx5jA form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sz62bYx5jA form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-sz62bYx5jA .mbr-section-title {
  color: #013440;
}
.cid-sz62f9G9sn {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ececec;
}
.cid-sz62f9G9sn h4 {
  display: flex;
  letter-spacing: 0.03em;
  color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sz62f9G9sn .panel-text {
  letter-spacing: 0.03em;
  color: #232323;
}
.cid-sz62f9G9sn .mbr-section-title {
  letter-spacing: 0.1em;
  color: #283940;
}
.cid-sz62f9G9sn .mbr-section-subtitle {
  letter-spacing: 0.03em;
  font-weight: 500;
}
.cid-sz62f9G9sn .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sz62f9G9sn .panel-group {
  width: 100%;
}
.cid-sz62f9G9sn .card {
  border-bottom: 1px solid #ffffff !important;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-sz62f9G9sn .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
}
.cid-sz62f9G9sn .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #013440;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sz62f9G9sn .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-sz62f9G9sn .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sz62f9G9sn .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-sz62f9G9sn .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-sz62f9G9sn .card .panel-body {
  background: #ffffff;
}
.cid-sz62f9G9sn .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sz62f9G9sn .sign {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sz62f9G9sn .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-sz62f9G9sn .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-sz62f9G9sn .header-text,
.cid-sz62f9G9sn .sign {
  color: #ffffff;
}
.cid-sz62gyidyj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #013440;
}
.cid-sz62gyidyj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sz62gyidyj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sz62gyidyj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sz62gyidyj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sz62gyidyj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sz62gyidyj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sz62gyidyj .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sz62gyidyj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sz62gyidyj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sz62gyidyj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sz62gyidyj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sz62gyidyj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sz625wBBkF .modalWindow .modalWindow-video {
    height: calc(100vw);
    width: 80vw;
    margin: 0 auto;
  }
}
.cid-sz62gyidyj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sz62gyidyj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sz6bbFv8zP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sz6bbFv8zP .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-sz6bbFv8zP .container {
    max-width: 1400px;
  }
}
.cid-sz6bbFv8zP .card {
  margin: auto;
}
.cid-sz6bbFv8zP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sz6bbFv8zP .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sz6bbFv8zP .row {
  justify-content: center;
}
