body {
  font-family: Muli;
}
.display-1 {
  font-family: 'Reem Kufi', sans-serif;
  font-size: 2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Reem Kufi', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Muli', sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Muli', sans-serif;
  font-size: 1.6rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Muli', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 768px) {
  .display-1 {
    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-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #6bc3bb !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #202555 !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #1054a1 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6bc3bb !important;
  border-color: #6bc3bb !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #41a098 !important;
  border-color: #41a098 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #41a098 !important;
  border-color: #41a098 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-info,
.btn-info:active {
  background-color: #202555 !important;
  border-color: #202555 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0b0d1d !important;
  border-color: #0b0d1d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0b0d1d !important;
  border-color: #0b0d1d !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1054a1 !important;
  border-color: #1054a1 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #09305b !important;
  border-color: #09305b !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #09305b !important;
  border-color: #09305b !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #3a8e87;
  color: #3a8e87;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #6bc3bb;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before,
.btn-primary-outline.active:before {
  transform: scaleX(1);
}
.btn-primary-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6bc3bb;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6bc3bb !important;
  border-color: #6bc3bb !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #149dcc;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before,
.btn-secondary-outline.active:before {
  transform: scaleX(1);
}
.btn-secondary-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #149dcc;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #04050b;
  color: #04050b;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #202555;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before,
.btn-info-outline.active:before {
  transform: scaleX(1);
}
.btn-info-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #202555;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #202555 !important;
  border-color: #202555 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #f7ed4a;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before,
.btn-success-outline.active:before {
  transform: scaleX(1);
}
.btn-success-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7ed4a;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #879a9f;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before,
.btn-warning-outline.active:before {
  transform: scaleX(1);
}
.btn-warning-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #879a9f;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #072444;
  color: #072444;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #1054a1;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before,
.btn-danger-outline.active:before {
  transform: scaleX(1);
}
.btn-danger-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1054a1;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1054a1 !important;
  border-color: #1054a1 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before,
.btn-black-outline.active:before {
  transform: scaleX(1);
}
.btn-black-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333333;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #6bc3bb !important;
}
.text-secondary {
  color: #149dcc !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #202555 !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #1054a1 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #3a8e87 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #0b566f !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #04050b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #072444 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #202555;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #1054a1;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6bc3bb;
  border-color: #6bc3bb;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6bc3bb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c6e8e5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #888fd2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #4493ec;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Muli', sans-serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #6bc3bb;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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: #6bc3bb;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6bc3bb;
  border-bottom-color: #6bc3bb;
}
.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: #000000 !important;
  background-color: #6bc3bb !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: #149dcc !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%;
}
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='%236bc3bb' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tSJMNhnJIi .navbar {
  padding: 0.5rem 0;
  background: #0050a4;
  transition: none;
  min-height: 100px;
}
.cid-tSJMNhnJIi .navbar-dropdown.bg-color.transparent.opened {
  background: #0050a4;
}
.cid-tSJMNhnJIi a {
  font-style: normal;
}
.cid-tSJMNhnJIi a .link:hover {
  color: inherit !important;
}
.cid-tSJMNhnJIi .dropdown-item:active {
  background: #0050a4;
}
.cid-tSJMNhnJIi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tSJMNhnJIi .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0 !important;
  margin: 0.5rem 1.4rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tSJMNhnJIi .nav-item:focus,
.cid-tSJMNhnJIi .nav-link:focus {
  outline: none;
}
.cid-tSJMNhnJIi .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tSJMNhnJIi .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tSJMNhnJIi .menu-logo {
  margin-right: auto;
}
.cid-tSJMNhnJIi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tSJMNhnJIi .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-tSJMNhnJIi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tSJMNhnJIi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tSJMNhnJIi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-tSJMNhnJIi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tSJMNhnJIi .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tSJMNhnJIi .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tSJMNhnJIi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tSJMNhnJIi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tSJMNhnJIi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tSJMNhnJIi .dropdown .dropdown-menu {
  background: #0050a4;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tSJMNhnJIi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tSJMNhnJIi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSJMNhnJIi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tSJMNhnJIi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSJMNhnJIi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tSJMNhnJIi .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-tSJMNhnJIi .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tSJMNhnJIi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tSJMNhnJIi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tSJMNhnJIi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tSJMNhnJIi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tSJMNhnJIi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.8rem;
  right: 1rem;
}
.cid-tSJMNhnJIi button.navbar-toggler:focus {
  outline: none;
}
.cid-tSJMNhnJIi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0050a4;
}
.cid-tSJMNhnJIi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSJMNhnJIi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSJMNhnJIi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSJMNhnJIi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSJMNhnJIi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSJMNhnJIi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSJMNhnJIi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSJMNhnJIi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSJMNhnJIi .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tSJMNhnJIi .collapsed .btn {
  display: -webkit-flex;
}
.cid-tSJMNhnJIi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tSJMNhnJIi .collapsed .navbar-collapse.collapsing,
.cid-tSJMNhnJIi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tSJMNhnJIi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tSJMNhnJIi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tSJMNhnJIi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tSJMNhnJIi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tSJMNhnJIi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tSJMNhnJIi .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tSJMNhnJIi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tSJMNhnJIi .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tSJMNhnJIi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tSJMNhnJIi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tSJMNhnJIi .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tSJMNhnJIi .collapsed button.navbar-toggler {
  display: block;
}
.cid-tSJMNhnJIi .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tSJMNhnJIi .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tSJMNhnJIi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tSJMNhnJIi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tSJMNhnJIi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tSJMNhnJIi .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: 1023px) {
  .cid-tSJMNhnJIi .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tSJMNhnJIi img {
    height: 3.8rem !important;
  }
  .cid-tSJMNhnJIi .btn {
    display: -webkit-flex;
  }
  .cid-tSJMNhnJIi button.navbar-toggler {
    display: block;
  }
  .cid-tSJMNhnJIi .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tSJMNhnJIi .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tSJMNhnJIi .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tSJMNhnJIi .navbar-collapse.collapsing,
  .cid-tSJMNhnJIi .navbar-collapse.show {
    display: block !important;
  }
  .cid-tSJMNhnJIi .navbar-collapse.collapsing .navbar-nav,
  .cid-tSJMNhnJIi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tSJMNhnJIi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tSJMNhnJIi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tSJMNhnJIi .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tSJMNhnJIi .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tSJMNhnJIi .navbar-collapse.collapsing .navbar-buttons,
  .cid-tSJMNhnJIi .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tSJMNhnJIi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tSJMNhnJIi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tSJMNhnJIi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tSJMNhnJIi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tSJMNhnJIi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tSJMNhnJIi .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 (min-width: 767px) {
  .cid-tSJMNhnJIi .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tSJMNhnJIi .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tSJMNhnJIi .nav-link,
.cid-tSJMNhnJIi .dropdown-item {
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.cid-tSJMNhnJIi .nav-link:hover,
.cid-tSJMNhnJIi .dropdown-item:hover {
  color: #f4dd27 !important;
  border-color: #6bc3bb;
}
.cid-tSKVlGdGv1 {
  background-image: url("../../../assets/images/kv-1920x1080.jpg");
}
.cid-tSKVlGdGv1 .btn {
  padding: 10px 15px 10px 15px;
  font-weight: bold;
}
.cid-tSKVlGdGv1 .mbr-section-title {
  letter-spacing: .1em;
}
.cid-tSKVlGdGv1 .icon-description {
  padding-top: 1rem;
  color: #ffffff;
}
.cid-tSKVlGdGv1 .mbr-media {
  height: 70px;
}
.cid-tSKVlGdGv1 .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: white;
}
.cid-tSKVlGdGv1 .mbr-media span:hover {
  opacity: 0.7;
}
.cid-tSKVlGdGv1 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tSKVlGdGv1 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tSKVlGdGv1 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tSKVlGdGv1 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tSKVlGdGv1 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tSKVlGdGv1 a.close:hover {
  color: #ffffff;
}
.cid-vjwbXNMqkj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-vjwbXNMqkj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjwbXNMqkj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjwbXNMqkj .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-vjwbXNMqkj .container-fluid {
    padding: 0 12px;
  }
}
.cid-vjwbXNMqkj .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vjwbXNMqkj .container {
    padding: 0 20px;
  }
}
.cid-vjwbXNMqkj .row {
  border-top: 2px solid #d7d7d7;
  border-bottom: 2px solid #d7d7d7;
  margin-top: -2px;
}
.cid-vjwbXNMqkj .card {
  padding: 0;
}
.cid-vjwbXNMqkj .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #d7d7d7;
}
@media (max-width: 992px) {
  .cid-vjwbXNMqkj .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-vjwbXNMqkj .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-vjwbXNMqkj .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vjwbXNMqkj .card:last-child {
    padding: 50px 20px;
  }
}
.cid-vjwbXNMqkj .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-vjwbXNMqkj .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vjwbXNMqkj .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-vjwbXNMqkj .mbr-section-title {
  color: #1d1d1d;
}
.cid-vjwbXNMqkj .mbr-text {
  color: #1d1d1d;
}
.cid-vjXXCSvHWW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f3f4fd;
}
.cid-vjXXCSvHWW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjXXCSvHWW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjXXCSvHWW .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-vjXXCSvHWW .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-vjXXCSvHWW .container {
    padding: 0 24px;
  }
}
.cid-vjXXCSvHWW .title-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
.cid-vjXXCSvHWW .content-wrapper {
  padding: 48px;
  background-color: #ffffff;
  border-radius: .75rem;
}
@media (max-width: 992px) {
  .cid-vjXXCSvHWW .content-wrapper {
    padding: 24px;
  }
}
.cid-vjXXCSvHWW .content-wrapper .mbr-figure iframe {
  border-radius: .75rem;
}
.cid-vjXXCSvHWW .content-wrapper .mbr-figure .app-video-wrapper img {
  border-radius: .75rem !important;
  object-fit: cover;
}
.cid-vjXXCSvHWW .mbr-section-title {
  color: #141414;
  text-align: center;
}
.cid-vjBCkk4n8l {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-vjBCkk4n8l .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjBCkk4n8l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjBCkk4n8l .card-text a {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}
.cid-vjBCkk4n8l .card-text a:hover {
  border: none;
}
.cid-vjBCkk4n8l .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-vjBCkk4n8l .team-card:hover {
  transform: translateY(-10px);
}
.cid-vjBCkk4n8l .row {
  background: #b2ccd2;
  border-radius: 3rem;
  padding: 6rem 1rem;
  margin: 0;
}
.cid-vjBCkk4n8l .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-vjBCkk4n8l .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vjBCkk4n8l .card-wrap .image-wrap img {
  max-width: 250px;
  max-height: 250px;
  margin: auto;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .cid-vjBCkk4n8l .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vjBCkk4n8l .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-vjBCkk4n8l .social-row {
  text-align: center;
}
.cid-vjBCkk4n8l .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #ffffff;
  transition: all 0.3s;
}
.cid-vjBCkk4n8l .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-vjBCkk4n8l .social-row .soc-item:hover {
  background-color: #ffffff;
}
.cid-vjBCkk4n8l .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
.cid-vjBCkk4n8l .mbr-section-title {
  color: #ffffff;
}
.cid-vjBCkk4n8l .mbr-role,
.cid-vjBCkk4n8l .social-row {
  color: #ffffff;
}
.cid-vjBCkk4n8l .card-text,
.cid-vjBCkk4n8l .mbr-section-btn,
.cid-vjBCkk4n8l .social-row {
  color: #ffffff;
}
.cid-vjXT6f5Itd.popup-builder {
  background-color: #ffffff;
}
.cid-vjXT6f5Itd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vjXT6f5Itd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vjXT6f5Itd .modal-content,
.cid-vjXT6f5Itd .modal-dialog {
  height: auto;
}
.cid-vjXT6f5Itd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vjXT6f5Itd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vjXT6f5Itd .form-wrapper .mbr-form .form-group,
  .cid-vjXT6f5Itd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vjXT6f5Itd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vjXT6f5Itd .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vjXT6f5Itd .mbr-text {
  text-align: justify;
}
.cid-vjXT6f5Itd .pt-0 {
  padding-top: 0 !important;
}
.cid-vjXT6f5Itd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vjXT6f5Itd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vjXT6f5Itd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vjXT6f5Itd .modal-open {
  overflow: hidden;
}
.cid-vjXT6f5Itd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vjXT6f5Itd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vjXT6f5Itd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vjXT6f5Itd .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vjXT6f5Itd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vjXT6f5Itd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vjXT6f5Itd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vjXT6f5Itd .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vjXT6f5Itd .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vjXT6f5Itd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vjXT6f5Itd .modal-backdrop.fade {
  opacity: 0;
}
.cid-vjXT6f5Itd .modal-backdrop.show {
  opacity: .5;
}
.cid-vjXT6f5Itd .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vjXT6f5Itd .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vjXT6f5Itd .modal-header {
    padding: 1rem;
  }
}
.cid-vjXT6f5Itd .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vjXT6f5Itd .modal-header .close svg {
  fill: #353535;
}
.cid-vjXT6f5Itd .modal-header .close:hover {
  opacity: 1;
}
.cid-vjXT6f5Itd .modal-header .close:focus {
  outline: none;
}
.cid-vjXT6f5Itd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: justify;
}
.cid-vjXT6f5Itd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vjXT6f5Itd .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vjXT6f5Itd .modal-body {
    padding: 1rem;
  }
}
.cid-vjXT6f5Itd .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vjXT6f5Itd .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vjXT6f5Itd .modal-footer {
    padding: 1rem;
  }
}
.cid-vjXT6f5Itd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vjXT6f5Itd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vjXT6f5Itd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vjXT6f5Itd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vjXT6f5Itd .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vjXT6f5Itd .modal-lg,
  .cid-vjXT6f5Itd .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vjXT6f5Itd .modal-xl {
    max-width: 1140px;
  }
}
.cid-vjXT6f5Itd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vjXT6f5Itd .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vjXT6f5Itd .form-group {
  margin-bottom: 1rem;
}
.cid-vjXT6f5Itd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vjXT6f5Itd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vjXT6f5Itd .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vjXT6f5Itd .mbr-section-btn {
  margin: 0;
}
.cid-vjXT6f5Itd .mbr-section-btn .btn {
  margin: 0;
}
.cid-vjXU8wSSwI.popup-builder {
  background-color: #ffffff;
}
.cid-vjXU8wSSwI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vjXU8wSSwI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vjXU8wSSwI .modal-content,
.cid-vjXU8wSSwI .modal-dialog {
  height: auto;
}
.cid-vjXU8wSSwI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vjXU8wSSwI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vjXU8wSSwI .form-wrapper .mbr-form .form-group,
  .cid-vjXU8wSSwI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vjXU8wSSwI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vjXU8wSSwI .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vjXU8wSSwI .mbr-text {
  text-align: justify;
}
.cid-vjXU8wSSwI .pt-0 {
  padding-top: 0 !important;
}
.cid-vjXU8wSSwI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vjXU8wSSwI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vjXU8wSSwI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vjXU8wSSwI .modal-open {
  overflow: hidden;
}
.cid-vjXU8wSSwI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vjXU8wSSwI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vjXU8wSSwI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vjXU8wSSwI .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vjXU8wSSwI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vjXU8wSSwI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vjXU8wSSwI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vjXU8wSSwI .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vjXU8wSSwI .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vjXU8wSSwI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vjXU8wSSwI .modal-backdrop.fade {
  opacity: 0;
}
.cid-vjXU8wSSwI .modal-backdrop.show {
  opacity: .5;
}
.cid-vjXU8wSSwI .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vjXU8wSSwI .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vjXU8wSSwI .modal-header {
    padding: 1rem;
  }
}
.cid-vjXU8wSSwI .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vjXU8wSSwI .modal-header .close svg {
  fill: #353535;
}
.cid-vjXU8wSSwI .modal-header .close:hover {
  opacity: 1;
}
.cid-vjXU8wSSwI .modal-header .close:focus {
  outline: none;
}
.cid-vjXU8wSSwI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: justify;
}
.cid-vjXU8wSSwI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vjXU8wSSwI .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vjXU8wSSwI .modal-body {
    padding: 1rem;
  }
}
.cid-vjXU8wSSwI .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vjXU8wSSwI .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vjXU8wSSwI .modal-footer {
    padding: 1rem;
  }
}
.cid-vjXU8wSSwI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vjXU8wSSwI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vjXU8wSSwI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vjXU8wSSwI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vjXU8wSSwI .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vjXU8wSSwI .modal-lg,
  .cid-vjXU8wSSwI .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vjXU8wSSwI .modal-xl {
    max-width: 1140px;
  }
}
.cid-vjXU8wSSwI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vjXU8wSSwI .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vjXU8wSSwI .form-group {
  margin-bottom: 1rem;
}
.cid-vjXU8wSSwI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vjXU8wSSwI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vjXU8wSSwI .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vjXU8wSSwI .mbr-section-btn {
  margin: 0;
}
.cid-vjXU8wSSwI .mbr-section-btn .btn {
  margin: 0;
}
.cid-vjXU8wSSwI .modal-title DIV {
  text-align: justify;
}
.cid-vjXUOJ246f.popup-builder {
  background-color: #ffffff;
}
.cid-vjXUOJ246f.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vjXUOJ246f.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vjXUOJ246f .modal-content,
.cid-vjXUOJ246f .modal-dialog {
  height: auto;
}
.cid-vjXUOJ246f .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vjXUOJ246f .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vjXUOJ246f .form-wrapper .mbr-form .form-group,
  .cid-vjXUOJ246f .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vjXUOJ246f .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vjXUOJ246f .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vjXUOJ246f .mbr-text {
  text-align: justify;
}
.cid-vjXUOJ246f .pt-0 {
  padding-top: 0 !important;
}
.cid-vjXUOJ246f .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vjXUOJ246f .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vjXUOJ246f .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vjXUOJ246f .modal-open {
  overflow: hidden;
}
.cid-vjXUOJ246f .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vjXUOJ246f .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vjXUOJ246f .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vjXUOJ246f .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vjXUOJ246f .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vjXUOJ246f .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vjXUOJ246f .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vjXUOJ246f .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vjXUOJ246f .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vjXUOJ246f .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vjXUOJ246f .modal-backdrop.fade {
  opacity: 0;
}
.cid-vjXUOJ246f .modal-backdrop.show {
  opacity: .5;
}
.cid-vjXUOJ246f .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vjXUOJ246f .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vjXUOJ246f .modal-header {
    padding: 1rem;
  }
}
.cid-vjXUOJ246f .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vjXUOJ246f .modal-header .close svg {
  fill: #353535;
}
.cid-vjXUOJ246f .modal-header .close:hover {
  opacity: 1;
}
.cid-vjXUOJ246f .modal-header .close:focus {
  outline: none;
}
.cid-vjXUOJ246f .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: justify;
}
.cid-vjXUOJ246f .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vjXUOJ246f .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vjXUOJ246f .modal-body {
    padding: 1rem;
  }
}
.cid-vjXUOJ246f .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vjXUOJ246f .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vjXUOJ246f .modal-footer {
    padding: 1rem;
  }
}
.cid-vjXUOJ246f .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vjXUOJ246f .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vjXUOJ246f .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vjXUOJ246f .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vjXUOJ246f .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vjXUOJ246f .modal-lg,
  .cid-vjXUOJ246f .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vjXUOJ246f .modal-xl {
    max-width: 1140px;
  }
}
.cid-vjXUOJ246f .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vjXUOJ246f .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vjXUOJ246f .form-group {
  margin-bottom: 1rem;
}
.cid-vjXUOJ246f .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vjXUOJ246f .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vjXUOJ246f .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vjXUOJ246f .mbr-section-btn {
  margin: 0;
}
.cid-vjXUOJ246f .mbr-section-btn .btn {
  margin: 0;
}
.cid-vjBIM8FRg7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-vjBIM8FRg7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjBIM8FRg7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjBIM8FRg7 .row {
  justify-content: space-between;
}
.cid-vjBIM8FRg7 .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vjBIM8FRg7 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-vjBIM8FRg7 .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vjBIM8FRg7 .item {
    margin-bottom: 50px;
  }
}
.cid-vjBIM8FRg7 .item .item-wrapper .item-content {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vjBIM8FRg7 .item .item-wrapper .item-content {
    display: block;
    text-align: center;
  }
}
.cid-vjBIM8FRg7 .item .item-wrapper .item-content .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 50px;
  margin-left: 18px;
}
@media (max-width: 1440px) {
  .cid-vjBIM8FRg7 .item .item-wrapper .item-content .icon-wrapper {
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vjBIM8FRg7 .item .item-wrapper .item-content .icon-wrapper {
    margin: 0 18px 32px;
  }
}
.cid-vjBIM8FRg7 .item .item-wrapper .item-content .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 3px solid #000c3f;
  transform: scale(1.4);
  pointer-events: none;
  transition: all .3s ease;
}
.cid-vjBIM8FRg7 .item .item-wrapper .item-content .icon-wrapper:hover::before,
.cid-vjBIM8FRg7 .item .item-wrapper .item-content .icon-wrapper:focus::before {
  transform: scale(1.5);
}
.cid-vjBIM8FRg7 .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 100%;
  background-color: #000c3f;
  font-size: 40px;
  color: #ffffff;
}
@media (max-width: 1440px) {
  .cid-vjBIM8FRg7 .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
}
.cid-vjBIM8FRg7 .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
  transition: all .3s ease;
}
.cid-vjBIM8FRg7 .item .item-wrapper .item-content .item-title:hover,
.cid-vjBIM8FRg7 .item .item-wrapper .item-content .item-title:focus {
  color: #ffffff;
}
.cid-vjBIM8FRg7 .mbr-section-title {
  color: #000c3f;
  text-align: center;
}
.cid-vjBIM8FRg7 .item-title {
  color: #000c3f;
}
.cid-vjBHBRsgJ0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #291f1e;
  overflow: hidden;
}
.cid-vjBHBRsgJ0 .media-container-row .mbr-text {
  color: #fffcee;
}
.cid-vjXX2AbkR3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaeaea;
  overflow: hidden;
}
.cid-vjXX2AbkR3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjXX2AbkR3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjXX2AbkR3 .content-wrapper {
  position: relative;
  margin: 0;
}
.cid-vjXX2AbkR3 .content-wrapper .content {
  padding: 0;
}
.cid-vjXX2AbkR3 .content-wrapper .border-wrap {
  position: absolute;
  height: 1000%;
  width: 1px;
  border-left: 1px solid #ffffff;
  pointer-events: none;
  padding: 0;
  top: -500%;
}
.cid-vjXX2AbkR3 .content-wrapper .border_1 {
  left: 0;
}
.cid-vjXX2AbkR3 .content-wrapper .border_2 {
  left: 25%;
}
@media (max-width: 992px) {
  .cid-vjXX2AbkR3 .content-wrapper .border_2 {
    display: none;
  }
}
.cid-vjXX2AbkR3 .content-wrapper .border_3 {
  left: 50%;
}
.cid-vjXX2AbkR3 .content-wrapper .border_4 {
  left: 75%;
}
@media (max-width: 992px) {
  .cid-vjXX2AbkR3 .content-wrapper .border_4 {
    display: none;
  }
}
.cid-vjXX2AbkR3 .content-wrapper .border_5 {
  left: 100%;
}
.cid-vjXX2AbkR3 .content-wrap {
  position: relative;
  z-index: 1;
  margin: 0 0 80px 0;
}
@media (max-width: 992px) {
  .cid-vjXX2AbkR3 .content-wrap {
    margin: 0 0 40px 0;
  }
}
.cid-vjXX2AbkR3 .content-wrap .card {
  padding: 0;
  justify-content: flex-end;
}
.cid-vjXX2AbkR3 .label-wrapper {
  margin-bottom: 20px;
}
.cid-vjXX2AbkR3 .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  background-color: #e1e1e1;
  padding: 7px 14px 6px;
}
.cid-vjXX2AbkR3 .label-wrapper .label-wrap .marker-wrap {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
  background-color: #d63614;
}
.cid-vjXX2AbkR3 .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjXX2AbkR3 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vjXX2AbkR3 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vjXX2AbkR3 .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjXX2AbkR3 .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vjXX2AbkR3 .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
  width: 100%;
}
.cid-vjXX2AbkR3 .mbr-section-btn .btn {
  width: 100%;
}
.cid-vjXX2AbkR3 .card-box {
  position: relative;
  z-index: 1;
}
.cid-vjXX2AbkR3 .card-box .mbr-figure {
  margin-right: -1px;
}
.cid-vjXX2AbkR3 .mbr-label {
  color: #686868;
}
.cid-vjXX2AbkR3 .mbr-section-title {
  color: #080a10;
}
.cid-vjXX2AbkR3 .mbr-text {
  color: #686868;
}
.cid-vbdndr1D72 .navbar {
  padding: 0.5rem 0;
  background: #0050a4;
  transition: none;
  min-height: 100px;
}
.cid-vbdndr1D72 .navbar-dropdown.bg-color.transparent.opened {
  background: #0050a4;
}
.cid-vbdndr1D72 a {
  font-style: normal;
}
.cid-vbdndr1D72 a .link:hover {
  color: inherit !important;
}
.cid-vbdndr1D72 .dropdown-item:active {
  background: #0050a4;
}
.cid-vbdndr1D72 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-vbdndr1D72 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0 !important;
  margin: 0.5rem 1.4rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-vbdndr1D72 .nav-item:focus,
.cid-vbdndr1D72 .nav-link:focus {
  outline: none;
}
.cid-vbdndr1D72 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vbdndr1D72 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-vbdndr1D72 .menu-logo {
  margin-right: auto;
}
.cid-vbdndr1D72 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vbdndr1D72 .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-vbdndr1D72 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vbdndr1D72 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vbdndr1D72 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-vbdndr1D72 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vbdndr1D72 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-vbdndr1D72 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-vbdndr1D72 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-vbdndr1D72 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbdndr1D72 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vbdndr1D72 .dropdown .dropdown-menu {
  background: #0050a4;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-vbdndr1D72 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-vbdndr1D72 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbdndr1D72 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vbdndr1D72 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbdndr1D72 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-vbdndr1D72 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-vbdndr1D72 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-vbdndr1D72 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vbdndr1D72 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vbdndr1D72 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vbdndr1D72 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vbdndr1D72 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.8rem;
  right: 1rem;
}
.cid-vbdndr1D72 button.navbar-toggler:focus {
  outline: none;
}
.cid-vbdndr1D72 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0050a4;
}
.cid-vbdndr1D72 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbdndr1D72 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbdndr1D72 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbdndr1D72 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbdndr1D72 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbdndr1D72 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbdndr1D72 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbdndr1D72 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbdndr1D72 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vbdndr1D72 .collapsed .btn {
  display: -webkit-flex;
}
.cid-vbdndr1D72 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vbdndr1D72 .collapsed .navbar-collapse.collapsing,
.cid-vbdndr1D72 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vbdndr1D72 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vbdndr1D72 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vbdndr1D72 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vbdndr1D72 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vbdndr1D72 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-vbdndr1D72 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-vbdndr1D72 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vbdndr1D72 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vbdndr1D72 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vbdndr1D72 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-vbdndr1D72 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-vbdndr1D72 .collapsed button.navbar-toggler {
  display: block;
}
.cid-vbdndr1D72 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-vbdndr1D72 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vbdndr1D72 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-vbdndr1D72 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vbdndr1D72 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vbdndr1D72 .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: 1023px) {
  .cid-vbdndr1D72 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vbdndr1D72 img {
    height: 3.8rem !important;
  }
  .cid-vbdndr1D72 .btn {
    display: -webkit-flex;
  }
  .cid-vbdndr1D72 button.navbar-toggler {
    display: block;
  }
  .cid-vbdndr1D72 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-vbdndr1D72 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vbdndr1D72 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vbdndr1D72 .navbar-collapse.collapsing,
  .cid-vbdndr1D72 .navbar-collapse.show {
    display: block !important;
  }
  .cid-vbdndr1D72 .navbar-collapse.collapsing .navbar-nav,
  .cid-vbdndr1D72 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vbdndr1D72 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vbdndr1D72 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vbdndr1D72 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-vbdndr1D72 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-vbdndr1D72 .navbar-collapse.collapsing .navbar-buttons,
  .cid-vbdndr1D72 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vbdndr1D72 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vbdndr1D72 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vbdndr1D72 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-vbdndr1D72 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vbdndr1D72 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vbdndr1D72 .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 (min-width: 767px) {
  .cid-vbdndr1D72 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-vbdndr1D72 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-vbdndr1D72 .nav-link,
.cid-vbdndr1D72 .dropdown-item {
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.cid-vbdndr1D72 .nav-link:hover,
.cid-vbdndr1D72 .dropdown-item:hover {
  color: #f4dd27 !important;
  border-color: #6bc3bb;
}
.cid-vbdndrJMLr {
  background-image: url("../../../assets/images/kv-4-1920x955.jpg");
}
.cid-vbdndrJMLr .btn {
  padding: 10px 15px 10px 15px;
  font-weight: bold;
}
.cid-vbdndrJMLr .mbr-section-title {
  letter-spacing: .1em;
}
.cid-vbdndrJMLr .icon-description {
  padding-top: 1rem;
  color: #ffffff;
}
.cid-vbdndrJMLr .mbr-media {
  height: 70px;
}
.cid-vbdndrJMLr .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: white;
}
.cid-vbdndrJMLr .mbr-media span:hover {
  opacity: 0.7;
}
.cid-vbdndrJMLr .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-vbdndrJMLr .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-vbdndrJMLr .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-vbdndrJMLr .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-vbdndrJMLr a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-vbdndrJMLr a.close:hover {
  color: #ffffff;
}
.cid-vbdndt4ZdY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbdndt4ZdY h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-vbdndt4ZdY h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndt4ZdY h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndt4ZdY .mbr-text,
.cid-vbdndt4ZdY .mbr-section-btn {
  color: #767676;
}
@media (max-width: 768px) {
  .cid-vbdndt4ZdY h3:before,
  .cid-vbdndt4ZdY h3:after {
    display: none;
  }
}
.cid-vbdndt4ZdY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndt4ZdY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndthAdk {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vbdndthAdk .title__block {
  margin-bottom: 89px;
}
.cid-vbdndthAdk .timelines-container .separline:last-child:before {
  content: none;
}
.cid-vbdndthAdk .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-vbdndthAdk .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-vbdndthAdk .timeline-text-content p {
  margin-bottom: 0;
}
.cid-vbdndthAdk .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-vbdndthAdk .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-vbdndthAdk .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-vbdndthAdk .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-vbdndthAdk .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-vbdndthAdk .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #0050a4;
}
.cid-vbdndthAdk .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-vbdndthAdk .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #0050a4;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-vbdndthAdk .title__block {
    margin-bottom: 40px;
  }
  .cid-vbdndthAdk .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-vbdndthAdk .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-vbdndthAdk .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-vbdndthAdk .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-vbdndthAdk .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-vbdndthAdk .iconBackground {
    left: 0 !important;
  }
  .cid-vbdndthAdk .separline:before {
    left: 0 !important;
  }
}
.cid-vbdndthAdk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndthAdk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndtHLix {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fef8f5;
}
.cid-vbdndtHLix h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-vbdndtHLix h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndtHLix h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndtHLix .mbr-text,
.cid-vbdndtHLix .mbr-section-btn {
  color: #767676;
}
@media (max-width: 768px) {
  .cid-vbdndtHLix h3:before,
  .cid-vbdndtHLix h3:after {
    display: none;
  }
}
.cid-vbdndtHLix .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndtHLix .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndtY0BC {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fef8f5;
}
.cid-vbdndtY0BC .wrap {
  overflow: hidden;
  background-color: #0050a4;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-vbdndtY0BC .wrap {
    height: auto;
  }
}
.cid-vbdndtY0BC .wrap:hover .mbr-section-title a {
  color: #149dcc !important;
}
.cid-vbdndtY0BC .text-wrapper {
  padding: 70px 0;
  padding: 70px 40px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-vbdndtY0BC .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-vbdndtY0BC .text-wrapper {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-vbdndtY0BC .text-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .cid-vbdndtY0BC .text-wrapper {
    padding: 20px 0;
  }
}
.cid-vbdndtY0BC .row {
  flex-direction: row-reverse;
}
.cid-vbdndtY0BC .text-wrapper {
  padding: 70px 40px;
  padding-right: 0;
}
@media (max-width: 991px) {
  .cid-vbdndtY0BC .text-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-vbdndtY0BC .text-wrapper {
    padding: 20px;
  }
}
.cid-vbdndtY0BC .mbr-section-subtitle,
.cid-vbdndtY0BC .mbr-section-title {
  margin-bottom: 12px;
}
.cid-vbdndtY0BC .image {
  width: 100%;
}
.cid-vbdndtY0BC .image img {
  width: 101%;
  border-radius: 4px;
  object-fit: cover;
}
.cid-vbdndtY0BC .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-vbdndtY0BC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndtY0BC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndtY0BC .mbr-text,
.cid-vbdndtY0BC .mbr-section-btn {
  text-align: left;
}
.cid-vbdnducwj3 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbdnducwj3 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-vbdnducwj3 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdnducwj3 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdnducwj3 .mbr-text,
.cid-vbdnducwj3 .mbr-section-btn {
  color: #767676;
}
@media (max-width: 768px) {
  .cid-vbdnducwj3 h3:before,
  .cid-vbdnducwj3 h3:after {
    display: none;
  }
}
.cid-vbdnducwj3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdnducwj3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdnduqTL6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vbdnduqTL6 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vbdnduqTL6 .items-col {
  background: #1c2d6a;
  padding: 5rem;
  height: 100%;
}
.cid-vbdnduqTL6 .container {
  max-width: 1800px;
}
@media (max-width: 1400px) {
  .cid-vbdnduqTL6 .items-col {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbdnduqTL6 .items-col {
    padding: 3rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-vbdnduqTL6 .col-md-12 {
    padding-bottom: 2rem;
  }
}
.cid-vbdnduqTL6 img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  min-height: 300px;
}
.cid-vbdnduqTL6 .link-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.cid-vbdnduqTL6 .link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0.2rem 1.5rem;
  margin-bottom: 0.5rem;
}
.cid-vbdnduqTL6 .link:before {
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: '\e908';
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.8rem;
}
.cid-vbdnduqTL6 .link,
.cid-vbdnduqTL6 .link-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-vbdnduI5cl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbdnduI5cl .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-vbdnduI5cl .card .square_null {
  transform: translateX(2rem);
  z-index: 1;
  border: 1px solid #6bc3bb;
}
.cid-vbdnduI5cl .card .square_fill {
  transform: translate(-5rem, -2rem);
  background-color: #1054a1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-vbdnduI5cl .card:hover .square_fill {
  transform: rotate(45deg) translate(-2rem, 2rem);
}
.cid-vbdnduI5cl .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-vbdnduI5cl .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-vbdnduI5cl .main_title {
  margin-bottom: 2.5rem;
}
.cid-vbdnduI5cl .card_subtitle {
  margin-bottom: .75rem;
}
.cid-vbdnduI5cl .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.23;
}
.cid-vbdnduI5cl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vbdnduI5cl .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-vbdnduI5cl .row {
    flex-direction: column-reverse;
  }
  .cid-vbdnduI5cl .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-vbdnduI5cl .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-vbdnduI5cl .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-vbdnduI5cl .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-vbdnduI5cl .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vbdnduI5cl .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-vbdnduI5cl .square_animation .square_null {
    transform: translateX(1rem);
  }
  .cid-vbdnduI5cl .square_animation .square_fill {
    transform: translate(-4rem, -2rem);
  }
}
@media (max-width: 767px) {
  .cid-vbdnduI5cl .card-wrapper {
    padding-top: 1rem;
  }
  .cid-vbdnduI5cl .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-vbdnduI5cl .card:hover .square_fill {
    transform: none;
  }
  .cid-vbdnduI5cl .card .square_fill {
    transform: translate(-2rem, -1rem) !important;
  }
  .cid-vbdnduI5cl .card .square_null {
    transform: translateX(1.5rem);
  }
  .cid-vbdnduI5cl .square_animation {
    margin-bottom: 1rem;
  }
  .cid-vbdnduI5cl .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-vbdnduZrmZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbdnduZrmZ blockquote {
  border-color: #0050a4;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-vbdndvbovD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbdndvbovD blockquote {
  border-color: #0050a4;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-vbdndvmv8x {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fef8f5;
}
.cid-vbdndvmv8x h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-vbdndvmv8x h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndvmv8x h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndvmv8x .mbr-text,
.cid-vbdndvmv8x .mbr-section-btn {
  color: #767676;
}
@media (max-width: 768px) {
  .cid-vbdndvmv8x h3:before,
  .cid-vbdndvmv8x h3:after {
    display: none;
  }
}
.cid-vbdndvmv8x .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndvmv8x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndvCZA9 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fef8f5;
}
.cid-vbdndvCZA9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndvCZA9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndvCZA9 .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-vbdndvCZA9 .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbdndvCZA9 .img1 {
  background: #0050a4;
}
.cid-vbdndvCZA9 .img2 {
  background: #0050a4;
}
.cid-vbdndvCZA9 .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-vbdndvCZA9 .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-vbdndvCZA9 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vbdndvCZA9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbdndvCZA9 .card-wrapper {
    flex-direction: column;
  }
  .cid-vbdndvCZA9 .card-box {
    padding: 1rem;
  }
  .cid-vbdndvCZA9 .card-box,
  .cid-vbdndvCZA9 .img-wrapper {
    width: 100%;
  }
  .cid-vbdndvCZA9 .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-vbdndvCZA9 .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-vbdndvCZA9 .card-subtitle {
  color: #0077ff;
}
.cid-vbdndvCZA9 .mbr-text,
.cid-vbdndvCZA9 .link-wrap {
  color: #555555;
}
.cid-vbdndvVGNN {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fef8f5;
}
.cid-vbdndvVGNN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndvVGNN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndvVGNN .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-vbdndvVGNN .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbdndvVGNN .img1 {
  background: #0050a4;
}
.cid-vbdndvVGNN .img2 {
  background: #0050a4;
}
.cid-vbdndvVGNN .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-vbdndvVGNN .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-vbdndvVGNN .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vbdndvVGNN .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbdndvVGNN .card-wrapper {
    flex-direction: column;
  }
  .cid-vbdndvVGNN .card-box {
    padding: 1rem;
  }
  .cid-vbdndvVGNN .card-box,
  .cid-vbdndvVGNN .img-wrapper {
    width: 100%;
  }
  .cid-vbdndvVGNN .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-vbdndvVGNN .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-vbdndvVGNN .card-subtitle {
  color: #0077ff;
}
.cid-vbdndvVGNN .mbr-text,
.cid-vbdndvVGNN .link-wrap {
  color: #555555;
}
.cid-vbdndwlmIM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vbdndwlmIM .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-vbdndwlmIM .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #0050a4;
  margin-right: 2rem;
  border-radius: 40px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-vbdndwlmIM .timeline-text-content p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-vbdndwlmIM .timeline-text-content {
    padding: 1.5rem 0.5rem;
  }
}
.cid-vbdndwlmIM .mbr-timeline-title,
.cid-vbdndwlmIM .mbr-timeline-text {
  color: #ffffff;
}
.cid-vbdndwlmIM .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.cid-vbdndwlmIM .timeline-element:hover .timeline-text-content {
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08) !important;
  -webkit-transition: all 0.4s !important;
  transition: all 0.4s !important;
}
.cid-vbdndwlmIM .timeline-element:hover .timeline-text-content h4,
.cid-vbdndwlmIM .timeline-element:hover .timeline-text-content p {
  -webkit-transition: color 1s !important;
  transition: color 1s !important;
  color: #ffffff !important;
}
.cid-vbdndwlmIM .timeline-element:hover .iconsBackground span {
  -webkit-transition: color 1s !important;
  transition: color 1s !important;
  color: #ffffff !important;
}
.cid-vbdndwlmIM .timeline-element:hover:before {
  -webkit-transition: background-color 1s !important;
  transition: background-color 1s !important;
  background-color: #ffffff !important;
}
.cid-vbdndwlmIM .reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-vbdndwlmIM .reverse .timeline-text-content {
  margin-left: 2rem;
  margin-right: 0;
}
.cid-vbdndwlmIM .iconsBackground {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #0050a4;
  top: 20px;
  margin-left: -30px;
}
.cid-vbdndwlmIM .iconsBackground span {
  color: #ffffff;
}
.cid-vbdndwlmIM .mbr-iconfont {
  position: absolute;
  text-align: center;
  font-size: 35px;
  display: inline-block;
  z-index: 3;
  top: 13px;
  left: 13px;
}
.cid-vbdndwlmIM .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #0050a4;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
.cid-vbdndwlmIM .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 768px) {
  .cid-vbdndwlmIM .iconsBackground {
    left: 1.5rem;
  }
  .cid-vbdndwlmIM .separline:before {
    left: calc(1.5rem - 1px);
  }
  .cid-vbdndwlmIM .timeline-text-content {
    margin-left: 3rem !important;
    margin-right: 0 !important;
  }
  .cid-vbdndwlmIM .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-vbdndwlmIM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndwlmIM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndx5tFw {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vbdndx5tFw .line {
  background-color: #0050a4;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vbdndxjecD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vbdndxs2hz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbdndxs2hz .row {
  align-items: center;
}
.cid-vbdndxs2hz .card .square_null {
  transform: translateX(2rem);
  z-index: 1;
  border: 1px solid #6bc3bb;
}
.cid-vbdndxs2hz .card .square_fill {
  transform: translate(-5rem, -2rem);
  background-color: #1054a1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-vbdndxs2hz .card:hover .square_fill {
  transform: rotate(45deg) translate(-2rem, 2rem);
}
.cid-vbdndxs2hz .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-vbdndxs2hz .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-vbdndxs2hz .main_title {
  margin-bottom: 2.5rem;
}
.cid-vbdndxs2hz .card_subtitle {
  margin-bottom: .75rem;
}
.cid-vbdndxs2hz .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.23;
}
.cid-vbdndxs2hz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vbdndxs2hz .card-wrapper {
    padding-right: 4rem;
    padding-left: 5rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-vbdndxs2hz .row {
    flex-direction: column-reverse;
  }
  .cid-vbdndxs2hz .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-vbdndxs2hz .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-vbdndxs2hz .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-vbdndxs2hz .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-vbdndxs2hz .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-vbdndxs2hz .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-vbdndxs2hz .square_animation .square_null {
    transform: translateX(1rem);
  }
  .cid-vbdndxs2hz .square_animation .square_fill {
    transform: translate(-4rem, -2rem);
  }
}
@media (max-width: 767px) {
  .cid-vbdndxs2hz .card-wrapper {
    padding-top: 1rem;
  }
  .cid-vbdndxs2hz .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-vbdndxs2hz .card:hover .square_fill {
    transform: none;
  }
  .cid-vbdndxs2hz .card .square_fill {
    transform: translate(-2rem, -1rem) !important;
  }
  .cid-vbdndxs2hz .card .square_null {
    transform: translateX(1.5rem);
  }
  .cid-vbdndxs2hz .square_animation {
    margin-bottom: 1rem;
  }
  .cid-vbdndxs2hz .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-vbdndxGUc5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vbdndxQotY {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f3f3f3;
}
.cid-vbdndxQotY h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-vbdndxQotY h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndxQotY h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndxQotY .mbr-text,
.cid-vbdndxQotY .mbr-section-btn {
  color: #767676;
}
@media (max-width: 768px) {
  .cid-vbdndxQotY h3:before,
  .cid-vbdndxQotY h3:after {
    display: none;
  }
}
.cid-vbdndxQotY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndxQotY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndy2ucs {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #f3f3f3;
}
.cid-vbdndy2ucs .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-vbdndy2ucs .mbr-text {
  margin-top: 1.5rem;
  letter-spacing: -0.025rem;
}
.cid-vbdndy2ucs .card_item {
  border-radius: 0 !important;
}
@media (min-width: 768px) {
  .cid-vbdndy2ucs .card_item:nth-child(1) .card-box {
    padding: 2.5rem 0 2.5rem 2rem;
  }
  .cid-vbdndy2ucs .card_item:nth-child(2) .card-box {
    padding: 12rem 0 2.5rem 2rem;
  }
  .cid-vbdndy2ucs .card_item:nth-child(3) .card-box {
    padding: 6rem 2rem 2.5rem 2rem;
  }
}
.cid-vbdndy2ucs .card_item:nth-child(1) .square_null {
  transform: translateX(2rem);
}
.cid-vbdndy2ucs .card_item:nth-child(1) .square_fill {
  transform: translate(-5rem, -2rem);
  background-color: #1054a1;
}
.cid-vbdndy2ucs .card_item:nth-child(1):hover .square_fill {
  transform: rotate(45deg) translate(-2rem, 2rem);
}
.cid-vbdndy2ucs .card_item:nth-child(2):hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -3rem) scale(0.75);
}
.cid-vbdndy2ucs .card_item:nth-child(2) .square_fill {
  background-color: #f7ed4a;
  transform: translate(-2.5rem, -0.5rem);
}
.cid-vbdndy2ucs .card_item:nth-child(2) .square_null {
  transform: rotate(45deg) translate(-1rem, -2rem);
}
.cid-vbdndy2ucs .card_item:nth-child(3):hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-vbdndy2ucs .card_item:nth-child(3) .square_fill {
  background-color: #202555;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-vbdndy2ucs .card_item .card-box {
  border-left: 1px dotted rgba(55, 60, 66, 0.5);
}
.cid-vbdndy2ucs .card_item:last-child .card-box {
  border-right: 1px dotted rgba(55, 60, 66, 0.5);
}
.cid-vbdndy2ucs .card-box {
  height: 100%;
}
.cid-vbdndy2ucs .item-wrapper {
  height: 100%;
  padding: 0 1rem;
}
.cid-vbdndy2ucs .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-vbdndy2ucs .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-vbdndy2ucs .square_animation .square_null {
  z-index: 1;
  border: 1px solid #6bc3bb;
}
.cid-vbdndy2ucs .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-vbdndy2ucs .card-title {
  margin-bottom: 1.75rem;
}
.cid-vbdndy2ucs .card-text {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-vbdndy2ucs .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-vbdndy2ucs .card_item:nth-child(1) .square_null {
    transform: translateX(1rem);
  }
  .cid-vbdndy2ucs .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-4.75rem);
  }
  .cid-vbdndy2ucs .card_item:nth-child(3):hover .square_fill {
    transform: scale(1) translateX(-4rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-vbdndy2ucs .item-wrapper {
    padding: 0;
  }
  .cid-vbdndy2ucs .card-box {
    padding: 2rem 0 2.5rem;
  }
  .cid-vbdndy2ucs .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-vbdndy2ucs .mbr-text {
    margin-top: .75rem;
  }
  .cid-vbdndy2ucs .square_animation {
    margin-bottom: 1rem;
  }
  .cid-vbdndy2ucs .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
  .cid-vbdndy2ucs .card_item:nth-child(1):hover .square_fill {
    transform: none;
  }
  .cid-vbdndy2ucs .card_item:nth-child(1) .square_fill {
    transform: translate(-2rem, -1rem) !important;
  }
  .cid-vbdndy2ucs .card_item:nth-child(1) .square_null {
    transform: translateX(1.5rem);
  }
  .cid-vbdndy2ucs .card_item:nth-child(2):hover .square_fill {
    transform: none;
  }
  .cid-vbdndy2ucs .card_item:nth-child(2) .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-vbdndy2ucs .card_item:nth-child(2) .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-vbdndy2ucs .card_item:nth-child(3):hover .square_fill {
    transform: none;
  }
  .cid-vbdndy2ucs .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-vbdndy2ucs .card_item .card-box {
    border-width: 0;
    border-bottom: 1px dotted rgba(55, 60, 66, 0.5);
  }
  .cid-vbdndy2ucs .card_item:last-child .card-box {
    border-width: 0;
  }
  .cid-vbdndy2ucs .card-title {
    margin-bottom: 1.25rem;
  }
  .cid-vbdndy2ucs .card-text {
    margin-bottom: 1.25rem;
  }
}
.cid-vbdndyAMuh {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f3f3f3;
}
.cid-vbdndyMb4m {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f3f3f3;
}
.cid-vbdndyMb4m .line {
  background-color: #0050a4;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vbdndz0ppZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #f3f3f3;
}
.cid-vbdndz0ppZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndz0ppZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndz0ppZ .google-map {
  height: 30rem;
  position: relative;
}
.cid-vbdndz0ppZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vbdndz0ppZ .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-vbdndz0ppZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vbdndz0ppZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vbdndzGGLa {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f3f3f3;
}
.cid-vbdndzX67Z {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3f3f3;
}
.cid-vbdndzX67Z .card-icon {
  font-size: 56px;
  color: #ffffff;
  transition: color 0.3s;
}
.cid-vbdndzX67Z .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-vbdndzX67Z .card {
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0;
}
.cid-vbdndzX67Z p {
  font-weight: 400;
}
.cid-vbdndzX67Z .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
  transition: all 0.3s;
}
.cid-vbdndzX67Z .link-ico:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: gray !important;
}
.cid-vbdndzX67Z .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-vbdndzX67Z .bg1 {
  background: #ed4266;
}
.cid-vbdndzX67Z .bg2 {
  background: #1c2d6a;
}
.cid-vbdndzX67Z .bg3 {
  background: #ff7f9f;
}
.cid-vbdndzX67Z .bg4 {
  background: #0050a4;
}
.cid-vbdndzX67Z .card-wrapper {
  padding: 4rem 2rem;
  transition: background 0.3s;
}
.cid-vbdndzX67Z .card-wrapper:hover .link-ico {
  background-color: #ffffff;
  border-color: #ffffff;
  color: gray !important;
}
.cid-vbdndzX67Z .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.cid-vbdndzX67Z .card-title,
.cid-vbdndzX67Z .card-ico,
.cid-vbdndzX67Z .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-vbdndzX67Z .mbr-text,
.cid-vbdndzX67Z .card-link {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vbdndzX67Z .row {
    padding: 0 1rem;
  }
}
.cid-vbdndzX67Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndzX67Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndAtftE {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbdndAtftE h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-vbdndAtftE h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndAtftE h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndAtftE .mbr-text,
.cid-vbdndAtftE .mbr-section-btn {
  color: #767676;
}
@media (max-width: 768px) {
  .cid-vbdndAtftE h3:before,
  .cid-vbdndAtftE h3:after {
    display: none;
  }
}
.cid-vbdndAtftE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndAtftE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndAIyol {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-vbdndAIyol .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndAIyol .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vbdndAIyol .container {
    padding: 0 15px;
  }
}
.cid-vbdndAIyol .row {
  justify-content: space-between;
}
.cid-vbdndAIyol .panel-group {
  padding-left: 0;
  padding-right: 130px;
}
@media (max-width: 992px) {
  .cid-vbdndAIyol .panel-group {
    padding-left: 0;
    margin-bottom: 60px;
  }
}
@media (max-width: 1440px) {
  .cid-vbdndAIyol .panel-group {
    padding-left: 0;
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-vbdndAIyol .panel-group {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-vbdndAIyol .panel-group {
    padding-left: 0;
  }
}
.cid-vbdndAIyol .panel-group .card {
  border-radius: 0 !important;
  padding: 0;
  margin-top: 40px;
}
.cid-vbdndAIyol .panel-group .card:first-child {
  margin-top: 0;
}
.cid-vbdndAIyol .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 20px 0;
}
.cid-vbdndAIyol .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-vbdndAIyol .panel-group .card .card-header .panel-title .panel-title-edit {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  position: relative;
}
.cid-vbdndAIyol .panel-group .card .card-header .panel-title .panel-title-edit::before {
  content: '/';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  color: #0091a8;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-vbdndAIyol .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  width: 10px;
  height: 10px;
  min-width: 10px;
  transition: all 0.3s ease-in-out;
  color: #30262b;
  margin-left: 20px;
  transform: rotate(90deg);
  opacity: .5;
}
.cid-vbdndAIyol .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(270deg);
}
.cid-vbdndAIyol .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #0091a8;
}
.cid-vbdndAIyol .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit::before {
  left: -30px;
  opacity: 1;
}
.cid-vbdndAIyol .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 20px;
  border-bottom: 1px solid #30262b;
}
.cid-vbdndAIyol .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 25px;
}
.cid-vbdndAIyol .panel-group .card .panel-collapse .panel-body .panel-desc {
  margin-bottom: 0;
}
.cid-vbdndAIyol .image-wrapper {
  position: relative;
  padding: 0 0 0 30px;
  padding: 0 30px 0 0;
}
@media (max-width: 992px) {
  .cid-vbdndAIyol .image-wrapper {
    padding: 0;
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-vbdndAIyol .image-wrapper {
    padding: 0;
  }
}
.cid-vbdndAIyol .image-wrapper .decor-wrap {
  position: absolute;
  top: -5%;
  left: 5%;
  height: 230px;
  width: 312px;
  background-color: #0091a8;
  transform: skewX(-20deg);
}
.cid-vbdndAIyol .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 730px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbdndAIyol .image-wrapper img {
    height: 350px;
  }
}
.cid-vbdndAIyol .panel-title-edit {
  color: #30262b;
}
.cid-vbdndAIyol .panel-text {
  color: #30262b;
}
.cid-vbdndAIyol .panel-desc {
  color: #0091a8;
}
.cid-vbdndB8Q0r {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbdndB8Q0r h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-vbdndB8Q0r h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndB8Q0r h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-vbdndB8Q0r .mbr-text,
.cid-vbdndB8Q0r .mbr-section-btn {
  color: #767676;
}
@media (max-width: 768px) {
  .cid-vbdndB8Q0r h3:before,
  .cid-vbdndB8Q0r h3:after {
    display: none;
  }
}
.cid-vbdndB8Q0r .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdndB8Q0r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdndBEodk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbdndBEodk .content_block {
  padding: 60px 15px;
  padding-right: 20%;
}
.cid-vbdndBEodk .content_block:hover .mbr-section-title a {
  color: #149dcc !important;
}
.cid-vbdndBEodk .card_topic,
.cid-vbdndBEodk .mbr-section-subtitle {
  margin-bottom: 12px;
}
.cid-vbdndBEodk .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #149dcc;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-vbdndBEodk .image {
  position: relative;
}
.cid-vbdndBEodk .image:before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
  z-index: 1;
  pointer-events: none;
}
.cid-vbdndBEodk .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vbdndBEodk .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-vbdndBEodk .mbr-section-btn .btn-secondary-outline:hover,
.cid-vbdndBEodk .mbr-section-btn .btn-secondary-outline .active,
.cid-vbdndBEodk .mbr-section-btn .btn-secondary-outline:focus {
  color: #6bc3bb !important;
}
.cid-vbdndBEodk .category_content {
  opacity: .8;
}
@media (max-width: 991px) {
  .cid-vbdndBEodk .content_block {
    padding: 30px 15px;
  }
  .cid-vbdndBEodk .mbr-figure {
    padding: 0;
  }
  .cid-vbdndBEodk .image:before {
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.99));
  }
}
.cid-vjBHBRsgJ0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #291f1e;
  overflow: hidden;
}
.cid-vjBHBRsgJ0 .media-container-row .mbr-text {
  color: #fffcee;
}
