.btn {
  border-width: 2px;
}
body {
  font-family: JetBrains Mono;
}
.display-1 {
  font-family: 'Inria Serif', serif;
  font-size: 3.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Inria Serif', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inria Serif', serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Inria Serif', serif;
  font-size: 2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inria Serif', serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.72rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.38rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((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.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 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: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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.4rem 2.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 0.8rem 3rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #103178 !important;
}
.bg-success {
  background-color: #13a05d !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #c5ab50 !important;
}
.bg-danger {
  background-color: #ffc800 !important;
}
.btn-primary {
  box-shadow: none!important;
}
.btn-primary,
.btn-primary:active {
  background-color: #103178 !important;
  border-color: #103178 !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: #103178 !important;
  background-color: white!important;
  border-color: #103178 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #06122b !important;
  border-color: #06122b !important;
}
.btn-secondary {
  box-shadow: none!important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff6666 !important;
  background-color: white!important;
  border-color: #ff6666 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info {
  box-shadow: none!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: #47b5ed !important;
  background-color: white!important;
  border-color: #47b5ed !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 {
  box-shadow: none!important;
}
.btn-success,
.btn-success:active {
  background-color: #13a05d !important;
  border-color: #13a05d !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: #13a05d !important;
  background-color: white!important;
  border-color: #13a05d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0a5330 !important;
  border-color: #0a5330 !important;
}
.btn-warning {
  box-shadow: none!important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c5ab50 !important;
  border-color: #c5ab50 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #c5ab50 !important;
  background-color: white!important;
  border-color: #c5ab50 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #8f7a2f !important;
  border-color: #8f7a2f !important;
}
.btn-danger {
  box-shadow: none!important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffc800 !important;
  border-color: #ffc800 !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: #ffc800 !important;
  background-color: white!important;
  border-color: #ffc800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a88400 !important;
  border-color: #a88400 !important;
}
.btn-white {
  background: white;
  transition: all 0.3s;
  color: #103178;
  border-color: white;
}
.btn-white:hover {
  background: #103178;
  color: white;
  border-color: #103178;
}
.btn-black {
  box-shadow: none!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: #232323 !important;
  background-color: white!important;
  border-color: #232323 !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: #103178;
  color: #103178;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #06122b !important;
  background-color: transparent!important;
  border-color: #06122b !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #103178 !important;
  border-color: #103178 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #13a05d;
  color: #13a05d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0a5330 !important;
  background-color: transparent!important;
  border-color: #0a5330 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #13a05d !important;
  border-color: #13a05d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #c5ab50;
  color: #c5ab50;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #8f7a2f !important;
  background-color: transparent!important;
  border-color: #8f7a2f !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c5ab50 !important;
  border-color: #c5ab50 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffc800;
  color: #ffc800;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a88400 !important;
  background-color: transparent!important;
  border-color: #a88400 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #000000 !important;
  background-color: #ffc800 !important;
  border-color: #ffc800 !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: #103178 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #13a05d !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #c5ab50 !important;
}
.text-danger {
  color: #ffc800 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #040c1e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #084528 !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: #83702c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #997800 !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]) {
  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]):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: #103178;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #c5ab50;
}
.alert-danger {
  background-color: #ffc800;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #103178;
  border-color: #103178;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #103178;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2561e2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #49e99d;
}
.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: #e5d9b0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fff4cc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inria Serif', serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #103178 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inria Serif', serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #103178;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #103178;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #103178;
}
.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: #103178;
  border-bottom-color: #103178;
}
.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: #103178 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%23103178' %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-sZfzI1jrxz {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-sZfzI1jrxz .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-sZfzI1jrxz .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sZfzI1jrxz .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.cid-sZfzI1jrxz .navbar.opened {
  transition: all 0.2s;
  background: #ffffff !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sZfzI1jrxz .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sZfzI1jrxz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #103178;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sZfzI1jrxz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZfzI1jrxz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 96.65714286vh;
  }
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sZfzI1jrxz .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-sZfzI1jrxz .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-sZfzI1jrxz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-sZfzI1jrxz .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-sZfzI1jrxz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sZfzI1jrxz .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-sZfzI1jrxz .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-sZfzI1jrxz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sZfzI1jrxz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-sZfzI1jrxz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sZfzI1jrxz .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-sZfzI1jrxz .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-sZfzI1jrxz .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-sZfzI1jrxz .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-sZfzI1jrxz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sZfzI1jrxz .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-sZfzI1jrxz .navbar-brand {
  height: 1.8rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sZfzI1jrxz .dropdown-item.active,
.cid-sZfzI1jrxz .dropdown-item:active {
  background-color: transparent;
}
.cid-sZfzI1jrxz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZfzI1jrxz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZfzI1jrxz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sZfzI1jrxz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZfzI1jrxz ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sZfzI1jrxz .navbar-buttons {
  text-align: center;
}
.cid-sZfzI1jrxz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #103178;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-sZfzI1jrxz .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-sZfzI1jrxz .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-sZfzI1jrxz .nav-link:hover,
.cid-sZfzI1jrxz .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sZfzI1jrxz .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-sZfzI1jrxz .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-sZfzI1jrxz .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-sZfC5UbLDy {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/fr-2000x2126.jpeg");
}
.cid-sZfC5UbLDy .mbr-text,
.cid-sZfC5UbLDy .typed-text,
.cid-sZfC5UbLDy .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sZfC5UbLDy .btn {
  margin-left: 4px !important;
}
.cid-sZfC5UbLDy .animated-element {
  color: #c5ab50;
}
.cid-sZfC5UbLDy .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #c5ab50;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sZfC5UbLDy .mbr-section-title {
  text-align: center;
}
.cid-sZfC5UbLDy .typed-text {
  text-align: center;
}
.cid-sZfC5UbLDy .mbr-section-text,
.cid-sZfC5UbLDy .mbr-section-btn {
  text-align: center;
}
.cid-sZrb3xxzKu {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sZrb3xxzKu .mbr-section-title {
  border-bottom: 2px solid currentColor;
  padding-bottom: 2rem;
  color: #c5ab50;
}
.cid-sZrb3xxzKu .row-bg {
  align-items: center;
  background: #103178;
  transition: all 0.3s;
  padding: 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sZrb3xxzKu .row-bg {
    padding: 1rem 0;
  }
}
.cid-sZrb3xxzKu .row-bg:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sZrb3xxzKu .image-wrapper {
    padding: 0 1rem;
  }
}
.cid-sZrb3xxzKu img {
  border-radius: 1rem;
}
.cid-sZrb3xxzKu .mbr-text,
.cid-sZrb3xxzKu .mbr-section-btn {
  color: #ffffff;
}
.cid-sZfPmZnRBU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZfPmZnRBU .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-sZfPmZnRBU .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-sZfPmZnRBU .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-sZfPmZnRBU .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-sZfPmZnRBU .lin,
.cid-sZfPmZnRBU .iconfont-wrapper {
  color: #3e97d1;
}
.cid-sZrVktgmkj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sZrVktgmkj .mbr-section-subtitle {
  color: #13287d;
  text-align: center;
  margin: auto;
}
.cid-sZrVktgmkj .mbr-section-title {
  text-align: center;
  color: #13287d;
  padding-bottom: 24px;
  margin: auto;
}
.cid-sZrVktgmkj .row {
  align-items: center;
  height: 100%;
}
.cid-sZrVktgmkj .wrapper {
  margin: auto;
}
.cid-sZSRe6gEUv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sZSRe6gEUv .nav-tabs .nav-item.open .nav-link:focus,
.cid-sZSRe6gEUv .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sZSRe6gEUv h4 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sZSRe6gEUv h4:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sZSRe6gEUv .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border: none;
  justify-content: space-around;
}
.cid-sZSRe6gEUv .tabs-col {
  overflow: hidden;
}
.cid-sZSRe6gEUv .tab-content {
  border-top: 1px solid lightgray;
  padding: 0rem;
  padding-top: 5rem;
}
.cid-sZSRe6gEUv .nav-tabs .nav-link {
  color: #c5ab50;
  font-style: normal;
  padding: 1rem 1.5rem;
  background: transparent;
  font-weight: 400;
  border: none;
  border-radius: 0;
  position: relative;
}
.cid-sZSRe6gEUv .nav-tabs .nav-link:before {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 1px solid #c5ab50;
  background: white;
  transition: all 0.3s;
  z-index: 9;
}
.cid-sZSRe6gEUv .nav-tabs .nav-link:after {
  position: absolute;
  content: '';
  bottom: 0px;
  right: 50%;
  width: 9999px;
  height: 1px;
  transition: all 0.3s;
  background: transparent;
}
.cid-sZSRe6gEUv .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-sZSRe6gEUv .nav-tabs .nav-link.active {
  font-weight: 400;
  font-style: normal;
}
.cid-sZSRe6gEUv .nav-tabs .nav-link.active:before {
  background: #c5ab50;
}
.cid-sZSRe6gEUv .nav-tabs .nav-link.active:after {
  background: #c5ab50;
}
@media (max-width: 767px) {
  .cid-sZSRe6gEUv .nav-tabs {
    flex-direction: row;
  }
  .cid-sZSRe6gEUv .mbr-text,
  .cid-sZSRe6gEUv .nav-link {
    text-align: center;
  }
  .cid-sZSRe6gEUv .nav-tabs .nav-link {
    margin-bottom: 1rem;
    border: 0;
  }
  .cid-sZSRe6gEUv .nav-tabs .nav-link:after {
    content: none;
  }
  .cid-sZSRe6gEUv .nav-item {
    min-width: 100px;
  }
  .cid-sZSRe6gEUv .tab-content {
    border-top: 0px;
    padding-top: 2rem;
  }
}
.cid-sZSRe6gEUv H3 {
  color: #13287d;
  text-align: center;
}
.cid-sZSRe6gEUv H1 {
  color: #13287d;
}
.cid-sZSRe6gEUv H2 {
  text-align: center;
  color: #c5ab50;
}
.cid-sZSRe6gEUv P {
  text-align: center;
  color: #13287d;
}
.cid-uA8MvS1dIs {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uA8MvS1dIs .mbr-media span {
  font-size: 2rem;
  transition: all 0.2s;
  color: #103178;
  background: #ffffff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
}
.cid-uA8MvS1dIs .mbr-media span:hover {
  background: #103178;
  color: #ffffff;
}
.cid-uA8MvS1dIs .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-uA8MvS1dIs .mbr-media a:hover {
  background-image: none!important;
}
.cid-uA8MvS1dIs .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uA8MvS1dIs .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uA8MvS1dIs .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uA8MvS1dIs .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-uA8MvS1dIs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uA8MvS1dIs .mbr-section-title {
  color: #103178;
}
.cid-uA97PRkxn9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uA97PRkxn9 .mbr-text {
  color: #13287d;
  text-align: center;
}
.cid-uA97PRkxn9 .mbr-section-subtitle {
  color: #103178;
}
.cid-uA98ZUoPpJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uA98ZUoPpJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA98ZUoPpJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uA98ZUoPpJ .row {
    padding: 0 24px;
  }
}
.cid-uA98ZUoPpJ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uA98ZUoPpJ .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-uA98ZUoPpJ .mbr-section-title {
  color: #2c0066;
}
.cid-uA98ZUoPpJ .mbr-section-title,
.cid-uA98ZUoPpJ .mbr-section-btn {
  text-align: center;
}
.cid-v8dDqLlVnN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v8dDqLlVnN .mbr-text {
  color: #13287d;
  text-align: center;
}
.cid-v8dDqLlVnN .mbr-section-subtitle {
  color: #103178;
}
.cid-v8dDDsv6BK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v8dDDsv6BK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8dDDsv6BK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-v8dDDsv6BK .row {
    padding: 0 24px;
  }
}
.cid-v8dDDsv6BK .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v8dDDsv6BK .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-v8dDDsv6BK .mbr-section-title {
  color: #2c0066;
}
.cid-v8dDDsv6BK .mbr-section-title,
.cid-v8dDDsv6BK .mbr-section-btn {
  text-align: center;
}
.cid-vcTiQUggkB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcTiQUggkB .mbr-text {
  color: #13287d;
  text-align: center;
}
.cid-vcTiQUggkB .mbr-section-subtitle {
  color: #103178;
}
.cid-vcTiV0GdUa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcTiV0GdUa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcTiV0GdUa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-vcTiV0GdUa .row {
    padding: 0 24px;
  }
}
.cid-vcTiV0GdUa .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-vcTiV0GdUa .title-wrapper .mbr-section-btn .btn {
  margin: 8px;
}
.cid-vcTiV0GdUa .mbr-section-title {
  color: #2c0066;
}
.cid-vcTiV0GdUa .mbr-section-title,
.cid-vcTiV0GdUa .mbr-section-btn {
  text-align: center;
}
.cid-sZrhJ2w4I7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZrhJ2w4I7 .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-sZrhJ2w4I7 .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-sZrhJ2w4I7 .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-sZrhJ2w4I7 .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-sZrhJ2w4I7 .lin,
.cid-sZrhJ2w4I7 .iconfont-wrapper {
  color: #3e97d1;
}
.cid-sZrmz0N8pB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: linear-gradient(to bottom, #ffffff 50%, #ffffff 50%);
}
@media (min-width: 1400px) {
  .cid-sZrmz0N8pB .container {
    max-width: 1162px;
  }
}
.cid-sZrmz0N8pB .mbr-section-title {
  text-align: center;
  color: #103178;
}
.cid-sZs8hYKvhs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-sZs8hYKvhs .google-map {
  height: 20rem;
  position: relative;
}
.cid-sZs8hYKvhs .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sZs8hYKvhs .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-sZs8hYKvhs .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sZs8hYKvhs .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sZs8hYKvhs .mbr-section-title {
  color: #c5ab50;
}
.cid-un857mgrsT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-un857mgrsT .google-map {
  height: 20rem;
  position: relative;
}
.cid-un857mgrsT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-un857mgrsT .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-un857mgrsT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-un857mgrsT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-un857mgrsT .mbr-section-title {
  color: #c5ab50;
}
.cid-sZrYRZFqKP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sZrYRZFqKP *:focus {
  outline: none;
}
.cid-sZrYRZFqKP .form-group {
  margin-bottom: 2rem;
}
.cid-sZrYRZFqKP .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #c5ab50;
  color: #c5ab50;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-sZrYRZFqKP .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-sZrYRZFqKP .form-control::-webkit-input-placeholder {
  color: #c5ab50;
}
.cid-sZrYRZFqKP .form-control::-moz-placeholder {
  color: #c5ab50;
}
.cid-sZrYRZFqKP .form-control:-ms-input-placeholder {
  color: #c5ab50;
}
.cid-sZrYRZFqKP .form-control:-moz-placeholder {
  color: #c5ab50;
}
.cid-sZrYRZFqKP input.form-control {
  padding: 1px 0;
}
.cid-sZrYRZFqKP .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-sZrYRZFqKP .soc-item .socicon {
  font-size: 1.5rem;
  color: #c5ab50;
  opacity: 1;
}
.cid-sZrYRZFqKP .soc-item .socicon:hover {
  opacity: .5;
}
.cid-sZrYRZFqKP .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-sZrYRZFqKP .first-column,
  .cid-sZrYRZFqKP .form-1 {
    text-align: center;
  }
}
.cid-sZrYRZFqKP .address-title,
.cid-sZrYRZFqKP .address-block {
  color: #13287d;
}
.cid-sZrYRZFqKP .form-title,
.cid-sZrYRZFqKP .btn-row {
  color: #13287d;
}
.cid-sZrYRZFqKP .contacts-title,
.cid-sZrYRZFqKP .contacts-block {
  color: #13287d;
}
.cid-sZrYRZFqKP .follow-title,
.cid-sZrYRZFqKP .social-list {
  color: #c5ab50;
}
.cid-sZfYVHeFEt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sZfYVHeFEt .mbr-text {
  color: #111111;
}
.cid-sZfYVHeFEt .media-container-row .mbr-text {
  color: #13287d;
}
.cid-sZfzI1jrxz {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-sZfzI1jrxz .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-sZfzI1jrxz .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sZfzI1jrxz .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.cid-sZfzI1jrxz .navbar.opened {
  transition: all 0.2s;
  background: #ffffff !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sZfzI1jrxz .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sZfzI1jrxz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #103178;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sZfzI1jrxz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZfzI1jrxz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 96.65714286vh;
  }
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sZfzI1jrxz .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-sZfzI1jrxz .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-sZfzI1jrxz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-sZfzI1jrxz .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-sZfzI1jrxz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sZfzI1jrxz .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-sZfzI1jrxz .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-sZfzI1jrxz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sZfzI1jrxz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-sZfzI1jrxz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sZfzI1jrxz .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-sZfzI1jrxz .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-sZfzI1jrxz .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-sZfzI1jrxz .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-sZfzI1jrxz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sZfzI1jrxz .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-sZfzI1jrxz .navbar-brand {
  height: 1.8rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sZfzI1jrxz .dropdown-item.active,
.cid-sZfzI1jrxz .dropdown-item:active {
  background-color: transparent;
}
.cid-sZfzI1jrxz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZfzI1jrxz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZfzI1jrxz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sZfzI1jrxz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZfzI1jrxz ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sZfzI1jrxz .navbar-buttons {
  text-align: center;
}
.cid-sZfzI1jrxz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #103178;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-sZfzI1jrxz .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-sZfzI1jrxz .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-sZfzI1jrxz .nav-link:hover,
.cid-sZfzI1jrxz .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sZfzI1jrxz .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-sZfzI1jrxz .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-sZfzI1jrxz .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-t3gs56QpuK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gs56QpuK .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-t3gs56QpuK .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-t3gs56QpuK .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-t3gs56QpuK .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-t3gs56QpuK .lin,
.cid-t3gs56QpuK .iconfont-wrapper {
  color: #3e97d1;
}
.cid-t3gszGwef0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: linear-gradient(to bottom, #ffffff 50%, #ffffff 50%);
}
@media (min-width: 1400px) {
  .cid-t3gszGwef0 .container {
    max-width: 1162px;
  }
}
.cid-t3gszGwef0 .mbr-section-title {
  text-align: center;
  color: #c5ab50;
}
.cid-t3gtdUOgWA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gtdUOgWA .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-t3gtdUOgWA .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-t3gtdUOgWA .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-t3gtdUOgWA .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-t3gtdUOgWA .lin,
.cid-t3gtdUOgWA .iconfont-wrapper {
  color: #3e97d1;
}
.cid-t3gmJwFxFI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-t3gmJwFxFI .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3gmJwFxFI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-t3gmJwFxFI .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t3gmJwFxFI .mbr-text {
  text-align: center;
  color: #13287d;
}
.cid-t3gmJwFxFI .mbr-section-title {
  color: #c5ab50;
}
.cid-t3gmJwFxFI .name {
  color: #c5ab50;
  text-align: center;
}
.cid-t3gmJwFxFI .position {
  color: #c5ab50;
  text-align: center;
}
.cid-t3gtvWJ1zc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gtvWJ1zc .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-t3gtvWJ1zc .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-t3gtvWJ1zc .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-t3gtvWJ1zc .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-t3gtvWJ1zc .lin,
.cid-t3gtvWJ1zc .iconfont-wrapper {
  color: #3e97d1;
}
.cid-t3gqHazbOv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gqHazbOv .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-t3gqHazbOv .text-wrapper {
    padding: 2rem;
  }
}
.cid-t3gqHazbOv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-t3gqHazbOv .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t3gqHazbOv .mbr-text {
  color: #13287d;
  text-align: center;
}
.cid-t3gqHazbOv .name {
  text-align: center;
  color: #c5ab50;
}
.cid-t3gqHazbOv .position {
  text-align: center;
  color: #c5ab50;
}
.cid-t3gqHazbOv .mbr-section-title {
  color: #c5ab50;
}
.cid-t3gxPYa2cg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gxPYa2cg .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-t3gxPYa2cg .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-t3gxPYa2cg .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-t3gxPYa2cg .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-t3gxPYa2cg .lin,
.cid-t3gxPYa2cg .iconfont-wrapper {
  color: #3e97d1;
}
.cid-t3gv1Xl7fm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gv1Xl7fm blockquote {
  border-color: #c5ab50;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t3gv1Xl7fm .mbr-section-title {
  color: #c5ab50;
}
.cid-t3gv1Xl7fm .mbr-text {
  text-align: left;
  color: #103178;
}
.cid-t3gyiPC2YW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gyiPC2YW .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-t3gyiPC2YW .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-t3gyiPC2YW .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-t3gyiPC2YW .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-t3gyiPC2YW .lin,
.cid-t3gyiPC2YW .iconfont-wrapper {
  color: #3e97d1;
}
.cid-t3gvvmd5kN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gvvmd5kN blockquote {
  border-color: #103178;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t3gvvmd5kN .mbr-text {
  color: #103178;
}
.cid-t3gvvmd5kN .mbr-section-title {
  color: #c5ab50;
}
.cid-t3gyDO41ba {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gyDO41ba .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-t3gyDO41ba .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-t3gyDO41ba .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-t3gyDO41ba .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-t3gyDO41ba .lin,
.cid-t3gyDO41ba .iconfont-wrapper {
  color: #3e97d1;
}
.cid-t3gwka8TIr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gwka8TIr blockquote {
  border-color: #c5ab50;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t3gwka8TIr .mbr-text {
  color: #103178;
}
.cid-t3gwka8TIr .mbr-section-title {
  color: #c5ab50;
}
.cid-t3gyCUVDYE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gyCUVDYE .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-t3gyCUVDYE .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-t3gyCUVDYE .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-t3gyCUVDYE .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-t3gyCUVDYE .lin,
.cid-t3gyCUVDYE .iconfont-wrapper {
  color: #3e97d1;
}
.cid-t3gwSigZFN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gwSigZFN blockquote {
  border-color: #103178;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t3gwSigZFN .mbr-section-title {
  color: #c5ab50;
}
.cid-t3gwSigZFN .mbr-text {
  color: #103178;
}
.cid-t3gRmz6v8l {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gRmz6v8l .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-t3gRmz6v8l .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-t3gRmz6v8l .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-t3gRmz6v8l .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-t3gRmz6v8l .lin,
.cid-t3gRmz6v8l .iconfont-wrapper {
  color: #3e97d1;
}
.cid-t3gxaendHV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gxaendHV blockquote {
  border-color: #c5ab50;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t3gxaendHV .mbr-text {
  color: #103178;
}
.cid-t3gxaendHV .mbr-section-title {
  color: #c5ab50;
}
.cid-t3gyEovyEW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3gyEovyEW .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-t3gyEovyEW .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-t3gyEovyEW .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-t3gyEovyEW .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-t3gyEovyEW .lin,
.cid-t3gyEovyEW .iconfont-wrapper {
  color: #3e97d1;
}
.cid-sZfYVHeFEt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sZfYVHeFEt .mbr-text {
  color: #111111;
}
.cid-sZfYVHeFEt .media-container-row .mbr-text {
  color: #13287d;
}
.cid-sZfzI1jrxz {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-sZfzI1jrxz .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-sZfzI1jrxz .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sZfzI1jrxz .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.cid-sZfzI1jrxz .navbar.opened {
  transition: all 0.2s;
  background: #ffffff !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sZfzI1jrxz .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sZfzI1jrxz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #103178;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sZfzI1jrxz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZfzI1jrxz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 96.65714286vh;
  }
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sZfzI1jrxz .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-sZfzI1jrxz .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-sZfzI1jrxz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-sZfzI1jrxz .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-sZfzI1jrxz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sZfzI1jrxz .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-sZfzI1jrxz .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-sZfzI1jrxz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sZfzI1jrxz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-sZfzI1jrxz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sZfzI1jrxz .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-sZfzI1jrxz .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-sZfzI1jrxz .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-sZfzI1jrxz .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-sZfzI1jrxz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sZfzI1jrxz .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-sZfzI1jrxz .navbar-brand {
  height: 1.8rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sZfzI1jrxz .dropdown-item.active,
.cid-sZfzI1jrxz .dropdown-item:active {
  background-color: transparent;
}
.cid-sZfzI1jrxz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZfzI1jrxz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZfzI1jrxz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sZfzI1jrxz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZfzI1jrxz ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sZfzI1jrxz .navbar-buttons {
  text-align: center;
}
.cid-sZfzI1jrxz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #103178;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-sZfzI1jrxz .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-sZfzI1jrxz .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-sZfzI1jrxz .nav-link:hover,
.cid-sZfzI1jrxz .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sZfzI1jrxz .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-sZfzI1jrxz .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-sZfzI1jrxz .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-sZs4T7V19W {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZs4T7V19W .lin {
  text-align: center;
  color: #ff4433;
  padding-bottom: 18px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}
.cid-sZs4T7V19W .mbr-iconfont {
  font-size: 100px;
  color: #000000;
}
.cid-sZs4T7V19W .iconfont-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.cid-sZs4T7V19W .mbr-section-subtitle {
  padding: 0px;
  text-align: center;
  color: #ff8f00;
  font-weight: 600;
  margin: 0;
}
.cid-sZs4T7V19W .lin,
.cid-sZs4T7V19W .iconfont-wrapper {
  color: #3e97d1;
}
.cid-sZs4XnYRwI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: linear-gradient(to bottom, #ffffff 50%, #ffffff 50%);
}
@media (min-width: 1400px) {
  .cid-sZs4XnYRwI .container {
    max-width: 1162px;
  }
}
.cid-sZs4XnYRwI .mbr-section-title {
  text-align: center;
  color: #c5ab50;
}
.cid-sZs0KcPj1m {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sZs0KcPj1m .head_info {
  text-align: center;
  margin-bottom: 70px;
}
.cid-sZs0KcPj1m .head_info .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
}
.cid-sZs0KcPj1m .head_info .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sZs0KcPj1m .head_info .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-sZs0KcPj1m .head_info .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sZs0KcPj1m .head_info .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 0;
  color: #6d7a8c;
}
.cid-sZs0KcPj1m .head_info .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sZs0KcPj1m .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
  background-color: #f0f2f5;
  border-bottom: solid 2px rgba(0, 0, 0, 0.07);
  text-align: center;
  border-radius: 8px;
}
.cid-sZs0KcPj1m .plan .plan-title {
  background-color: #c5ab50;
  padding-bottom: 60px;
  padding-top: 30px;
  margin-bottom: 0;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
}
.cid-sZs0KcPj1m .plan .plan-title.display-7 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.cid-sZs0KcPj1m .plan .icon_box {
  display: block;
  text-align: center;
}
.cid-sZs0KcPj1m .plan .icon_box .ico1 {
  width: 96px;
  height: 96px;
  line-height: 2.4;
  font-size: 40px;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  top: -40px;
  background: #fff;
  color: #130947;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.05);
}
.cid-sZs0KcPj1m .plan .plan-price {
  color: #28303f;
}
.cid-sZs0KcPj1m .plan .plan-price .price-figure {
  font-weight: 700;
  display: inline-block;
}
.cid-sZs0KcPj1m .plan .plan-price .price-figure.display-1 {
  font-size: 50px;
  line-height: 1;
}
.cid-sZs0KcPj1m .plan .plan-price .price-value {
  font-weight: 600;
  line-height: 1.5;
}
.cid-sZs0KcPj1m .plan .plan-price .price-term {
  line-height: 1;
  margin-top: 0.45rem;
}
.cid-sZs0KcPj1m .plan .plan-list {
  padding: 30px 40px;
}
.cid-sZs0KcPj1m .plan .plan-list .list-group {
  color: #6d7a8c;
}
.cid-sZs0KcPj1m .plan .plan-list .list-group-item {
  position: relative;
  -webkit-box-pack: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 7.5px 0;
}
.cid-sZs0KcPj1m .plan .plan-list .list-group-item:last-child {
  border-radius: 8px;
}
.cid-sZs0KcPj1m .plan .plan-list .list-group.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-sZs0KcPj1m .plan .mbr-section-btn {
  padding: 0 2.45rem;
}
.cid-sZs0KcPj1m .plan .mbr-section-btn .btn {
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 2em;
}
.cid-sZs0KcPj1m .plan .mbr-section-btn .btn.display-4 {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 1px;
}
.cid-sZs0KcPj1m .plan:nth-child(2) .plan-title {
  background-color: #13287d;
}
@media (max-width: 550px) {
  .cid-sZs0KcPj1m .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sZs0KcPj1m .head_info .mbr-section-title {
  color: #13287d;
}
.cid-sZs0KcPj1m .head_info .mbr-section-text {
  color: #13287d;
}
.cid-sZs0KcPj1m .plan .plan-list .list-group,
.cid-sZs0KcPj1m .mbr-section-btn {
  color: #13287d;
}
.cid-sZs0KcPj1m .plan-price .price-figure {
  color: #13287d;
}
.cid-sZs0KcPj1m .plan-price .price-term {
  color: #c5ab50;
}
.cid-sZs0KcPj1m .plan-price .price-value {
  color: #13287d;
}
.cid-sZs47YUn04 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sZs47YUn04 .head_info {
  text-align: center;
  margin-bottom: 70px;
}
.cid-sZs47YUn04 .head_info .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
}
.cid-sZs47YUn04 .head_info .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sZs47YUn04 .head_info .mbr-section-title {
  margin-bottom: 20px;
  color: #130947;
  font-weight: 700;
}
.cid-sZs47YUn04 .head_info .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sZs47YUn04 .head_info .mbr-section-text {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 0;
  color: #6d7a8c;
}
.cid-sZs47YUn04 .head_info .mbr-section-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-sZs47YUn04 .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
  background-color: #f0f2f5;
  border-bottom: solid 2px rgba(0, 0, 0, 0.07);
  text-align: center;
  border-radius: 8px;
}
.cid-sZs47YUn04 .plan .plan-title {
  background-color: #c5ab50;
  padding-bottom: 60px;
  padding-top: 30px;
  margin-bottom: 0;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
}
.cid-sZs47YUn04 .plan .plan-title.display-7 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.cid-sZs47YUn04 .plan .icon_box {
  display: block;
  text-align: center;
}
.cid-sZs47YUn04 .plan .icon_box .ico1 {
  width: 96px;
  height: 96px;
  line-height: 2.4;
  font-size: 40px;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  top: -40px;
  background: #fff;
  color: #130947;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.05);
}
.cid-sZs47YUn04 .plan .plan-price {
  color: #28303f;
}
.cid-sZs47YUn04 .plan .plan-price .price-figure {
  font-weight: 700;
  display: inline-block;
}
.cid-sZs47YUn04 .plan .plan-price .price-figure.display-1 {
  font-size: 50px;
  line-height: 1;
}
.cid-sZs47YUn04 .plan .plan-price .price-value {
  font-weight: 600;
  line-height: 1.5;
}
.cid-sZs47YUn04 .plan .plan-price .price-term {
  line-height: 1;
  margin-top: 0.45rem;
}
.cid-sZs47YUn04 .plan .plan-list {
  padding: 30px 40px;
}
.cid-sZs47YUn04 .plan .plan-list .list-group {
  color: #6d7a8c;
}
.cid-sZs47YUn04 .plan .plan-list .list-group-item {
  position: relative;
  -webkit-box-pack: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 7.5px 0;
}
.cid-sZs47YUn04 .plan .plan-list .list-group-item:last-child {
  border-radius: 8px;
}
.cid-sZs47YUn04 .plan .plan-list .list-group.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-sZs47YUn04 .plan .mbr-section-btn {
  padding: 0 2.45rem;
}
.cid-sZs47YUn04 .plan .mbr-section-btn .btn {
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 2em;
}
.cid-sZs47YUn04 .plan .mbr-section-btn .btn.display-4 {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 1px;
}
.cid-sZs47YUn04 .plan:nth-child(2) .plan-title {
  background-color: #13287d;
}
@media (max-width: 550px) {
  .cid-sZs47YUn04 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sZs47YUn04 .head_info .mbr-section-title {
  color: #13287d;
}
.cid-sZs47YUn04 .head_info .mbr-section-text {
  color: #13287d;
}
.cid-sZs47YUn04 .plan .plan-list .list-group,
.cid-sZs47YUn04 .mbr-section-btn {
  color: #13287d;
}
.cid-sZs47YUn04 .plan-price .price-term {
  color: #c5ab50;
}
.cid-sZs47YUn04 .plan-price .price-figure {
  color: #13287d;
}
.cid-sZs47YUn04 .plan-price .price-value {
  color: #13287d;
}
.cid-sZfYVHeFEt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sZfYVHeFEt .mbr-text {
  color: #111111;
}
.cid-sZfYVHeFEt .media-container-row .mbr-text {
  color: #13287d;
}
.cid-sZfzI1jrxz {
  position: sticky;
  top: 0;
  z-index: 11;
}
.cid-sZfzI1jrxz .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-sZfzI1jrxz .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sZfzI1jrxz .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.cid-sZfzI1jrxz .navbar.opened {
  transition: all 0.2s;
  background: #ffffff !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #e6e6e6;
  color: #132c70;
  background: #ffffff !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sZfzI1jrxz .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sZfzI1jrxz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #103178;
}
.cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sZfzI1jrxz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZfzI1jrxz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 96.65714286vh;
  }
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sZfzI1jrxz .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-sZfzI1jrxz .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-sZfzI1jrxz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-sZfzI1jrxz .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-sZfzI1jrxz .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-sZfzI1jrxz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sZfzI1jrxz .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-sZfzI1jrxz .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-sZfzI1jrxz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-sZfzI1jrxz .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sZfzI1jrxz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-sZfzI1jrxz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sZfzI1jrxz .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-sZfzI1jrxz .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-sZfzI1jrxz .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-sZfzI1jrxz .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-sZfzI1jrxz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sZfzI1jrxz .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-sZfzI1jrxz .navbar-brand {
  height: 1.8rem;
  min-height: 3rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZfzI1jrxz .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sZfzI1jrxz .dropdown-item.active,
.cid-sZfzI1jrxz .dropdown-item:active {
  background-color: transparent;
}
.cid-sZfzI1jrxz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZfzI1jrxz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZfzI1jrxz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sZfzI1jrxz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZfzI1jrxz ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sZfzI1jrxz .navbar-buttons {
  text-align: center;
}
.cid-sZfzI1jrxz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #103178;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-sZfzI1jrxz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZfzI1jrxz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-sZfzI1jrxz .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-sZfzI1jrxz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-sZfzI1jrxz .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-sZfzI1jrxz .nav-link:hover,
.cid-sZfzI1jrxz .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sZfzI1jrxz .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-sZfzI1jrxz .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-sZfzI1jrxz .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-sZrVGQJEgK {
  background-image: url("../../../assets/images/march-566x429.jpg");
  background-position: right;
}
.cid-sZrVGQJEgK .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-sZrVGQJEgK .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-sZrVGQJEgK .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-sZrVGQJEgK img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-sZrVGQJEgK .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-sZrVHKRs54 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZrVHKRs54 h2,
.cid-sZrVHKRs54 h3,
.cid-sZrVHKRs54 h4,
.cid-sZrVHKRs54 p {
  margin: 0;
}
.cid-sZrVHKRs54 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-sZrVHKRs54 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-sZrVHKRs54 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sZrVHKRs54 .mbr-section-title {
  color: #103178;
  margin-bottom: 22px;
  text-align: center;
}
.cid-sZrVHKRs54 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-sZrVHKRs54 .mbr-text {
  color: #003049;
  margin-bottom: 10px;
  text-align: center;
}
.cid-sZrVIgVeid {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZrVIgVeid .arrow {
  position: absolute;
  font-size: 1.5rem;
  color: #efefef;
  top: 1rem;
  transition: all 0.3s;
  right: 1.3rem;
  transform: rotate(-30deg);
}
.cid-sZrVIgVeid .card {
  padding: 0;
  margin-right: -2px;
  margin-top: -2px;
}
.cid-sZrVIgVeid .card:hover .arrow {
  transform: rotate(330deg);
}
.cid-sZrVIgVeid .main-sub-title {
  background: #d62828;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  padding: 0.1rem 1rem;
}
.cid-sZrVIgVeid .card-title {
  transition: all 0.3s;
  text-align: center;
  color: #c5ab50;
}
.cid-sZrVIgVeid .mbr-iconfont {
  font-size: 5rem;
  color: #000000;
  padding-right: 1.5rem;
  padding: 0;
  margin-bottom: 1.5rem;
}
.cid-sZrVIgVeid .card-text {
  color: #003049;
  text-align: center;
}
.cid-sZrVIgVeid .main-text {
  color: #777d74;
  text-align: center;
}
.cid-sZrVIgVeid .main-sub-title,
.cid-sZrVIgVeid .align-wrapper {
  color: #ffffff;
}
.cid-sZrVIgVeid .card-title,
.cid-sZrVIgVeid .card-text,
.cid-sZrVIgVeid .mbr-iconfont {
  transition: all 0.3s;
}
.cid-sZrVIgVeid .card-wrapper {
  display: flex;
  padding: 3rem 2rem;
  background: #ffffff;
  transition: all 0.3s;
  border: 2px solid #efefef;
  flex-direction: column;
}
.cid-sZrVIgVeid .card-wrapper:hover {
  background: #13287d;
  border-color: #13287d;
}
.cid-sZrVIgVeid .card-wrapper:hover .card-title,
.cid-sZrVIgVeid .card-wrapper:hover .card-text,
.cid-sZrVIgVeid .card-wrapper:hover .mbr-iconfont {
  color: #c5ab50 !important;
}
.cid-sZrVIgVeid .main-title {
  text-align: center;
}
.cid-sZrVIgVeid .card-title DIV {
  text-align: center;
}
.cid-sZfYVHeFEt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sZfYVHeFEt .mbr-text {
  color: #111111;
}
.cid-sZfYVHeFEt .media-container-row .mbr-text {
  color: #13287d;
}
